HTML Doc
<p> : paragraph tag, add minor extra line at the end
<h1>-<h6> : bigger to smaller heading
<b> or <strong> : make text bold, both are same but browser gives importance to the strong first than b
<i> or <em> : make text italic, both are same but browser gives importance to the em first than i
<u> : make text underlined
<q> : quote around sentence ""
<blockquote cite="https://www.quotationsite.com"> : sentence starts with space but without quote, quotation from external source
<table>
<thead>
<tr>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<td></td>
<td></td>
</tr>
</tfoot>
</table>
<ul> : unordered list
<li></li>
<li></li>
</ul>
<ol> : ordered list
<li></li>
<li></li>
</ol>
<img src="img1.webp" alt="image description" height="230" width="450"/>
<a href="www.google.com">google link</a>
<form action="frm.php" method="POST">
<fieldset>
<legend>form </legend>
<input type...>
<input type...>
</fieldset>
</form>
<label for="mail">E-Mail </label>
<input type="email" name="mail" />
<input type="text" name="firstname" />
<input type="submit" />
<input type="reset" />
<input type="checkbox" name="test1" value="t1">
<label for="test1">t1 </label>
<input type="checkbox" name="test1" value="t2">
<label for="test1">t2 </label>
<select name="list1" multiple>
<option value="op1">option1</option>
<option value="op2">option2</option>
</select>
<textarea name="ta1" rows="23" cols="12" >
<input list="color" name="colors"> : searchable list once click on it
<datalist id="color">
<option value="Red">
<option value="Blue">
</datalist>
<header> anything... </header>
<footer> </footer>
<aside></aside> : needs css to properly work
<figure><img src="img1.png"/><figcaption>logo for this page</figcaption></figure>
<nav> <a href="google.com"></a></nav>
<address> </address> : default will be italics font
<time> </time>
<article> </article>
<section> </section>