# HEADING TAG(used to display heading in html)
# ANCHOR TAG(used to add links to your page)
# image tag(used to add images)
# <br/> tag(used to add next line(line break)to your page)
# bold,italic,underline tag(used to highlight text in your page)
<b>Bold</b>
<i>Italic</i>
<u>underline</u>
# Big & small Tag(used to display big and small text on your page)
<big>Big</big>
<small>Small</small>
# Hr Tag (used to display a horizontal ruler,used to seperate content)
<hr/>
# Subscript & Superscript Tag(used to display a horizontal ruler,used to seperate
content)
<sub>Subscript</sub>(H2O)
<sup>superscript</sup>(A2+B2+C )
# Pre Tag(used to display text as it is(without ignoring spaces and next line)
<pre> This is a sample text </pre>
# paragraph tag(used to create paragraph tag)
<p></P>
# li tag(used to create list )
To create list we use two types of tag
1. ul - unordered list
2. ol - ordered list
<ul>
<li>pratik</li>
<li>xyz</li>
<li>shraddha</li>
<li>karan</li>
</ul>
<ol>
<li>mayuri</li>
<li>sakshi</li>
<li>shraddha</li>
<li>supriya</li>
</ol>