<p>
This text is now <small>small</small>; now its wrapped inside <strong>bold</strong> lets use emp tag <em>italics</em>
</p>

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h5>Heading 4</h5>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
unordered list
<h2>unordered list</h2>
<ul>
<li>unordered List</li>
<li>unordered</li>
<li>unordered</li>
<li>unordered</li>
</ul>
odored list
<h2> ordered list</h2>
<ol>
<li>lorem12</li>
<li>lorem12</li>
<li>lorem12</li>
<li>lorem12</li>
</ol>
<blockquote cite="google.com">some nice quote</blockquote> quote something from other site adds indentationfor : used in <label> to create association with input fieldtext : we want text from useremail: we want email (simle validation provided)password: we want passwordradio: radio buttonsubmit: a button to submit formrequired: makes field requiredname attr can be used for server side processing
value : to set the valueplaceholder: text to display when field is empty <input type="radio" value="1" name="age" id="age1">
<label for="age1">0-24</label>
<input type="radio" value="2" name="age" id="age2">
<label for="age2">24-45</label>
<input type="radio" value="3" name="age" id="age3">
<label for="age3">45-65</label>

<label for="quiz>select correct answer</label>
<select name="quiz" id="quiz">
<option value="1"> answer 1 </option>
<option value="2"> answer 2 </option>
<option value="3"> answer 3 </option>
</select>


row:size in rowscols: size in cols<label for="comments">comments</label>
<textarea name="comments" id="comments" cols="30" rows="10"></textarea>

<input type="submit" value="submit">

main : main content of webpage, unique to pagesection : certain section of the pagearticle : a postaside : define related content (beside an article showing things related to it)header: nav , title so onfooter: footer of the page<header>
<h1> Qasim Header </h1>
<section>
<img src="2022-05-03-01-11-11.png" alt="header image">
<div class="headerDiv">
<h2> welcome to <br> <span>QasimClass</span></h2>
</div>
</section>
<nav>
<ul>
<li><a>home</a></li>
<li><a>about</a></li>
<li><a>contact</a></li>
</ul>
</nav>
<main>
<article> <h2> lorem12 </h2>
<p></p>
</article>
<ul>
<li><a>home</a></li>
<li><a>about</a></li>
<li><a>contact</a></li>
</ul>
</main>
</header>