<TagName> ..... </TagName>Opening Tag
Closing Tag
<html> ........ </html>Opening Tag
Closing Tag
<html>
<head>
.......
</head>
<body>
.......
</body>
</html>
Not Visible
Visible
<p>
This tag is used to
display text in paragraph.
Go ahead and try this tag
in your code and
see how it is displayed
</p>
<p>
This tag is used to <br>
display text in paragraph. <br>
Go ahead and try this tag <br>
in your code and <br>
see how it is displayed <br>
</p>
This tag is used to
display text in paragraph.
Go ahead and try this tag
in your code and
see how it is displayed
<h1> Heading </h1>
<pre>
This tag is used to
display text in paragraph.
Go ahead and try this tag
in your code and
see how it is displayed
</pre>
This tag is used to
display text in paragraph.
Go ahead and try this tag
in your code and
see how it is displayed
<h1> Heading </h1>
<h2> Heading </h2>
<h3> Heading </h3>
<h4> Heading </h4>
<h5> Heading </h5>
<h6> Heading </h6>
Text formating
<b> bold </b>
<i> italic </i>
<u> underlined </u>Attributes
<p align="center"> hello </p>attribute name
value
Anchor tag
<a href="http://www.google.com">
google
</a>Image
<img src="tiger.jpg">source of image
Image path
Unodered List
<ul>
<li>tiger</li>
<li>lion</li>
<li>elephant</li>
</ul>list item
Odered List
<ol>
<li>tiger</li>
<li>lion</li>
<li>elephant</li>
</ol>list item