1.HTML TAG
This tag is is html tag.All code write under the tag.
<html></html>
2.HEAD TAG
<head></head> <!-- opening tag <head> and </head> closing tag-->
3.TITLE TAG
Website title write here.
<title>Title</title>
4.BODY TAG
All content code write here.
<body></body> <!-- All content write under the tag-->
5.HEADING TAG
There are six heading tag. h1 is first and big heading.h6 is small heading and last heading.
<h1>First Heading</h1>
<h2> Second Heading</h2>
<h3>Third Heading</h3>
<h5>Fivth Heading</h5>
<h6>Sixth Heading</h6>
ALL CODE FORMATE HERE
<html>
<head>
<title>TITLE</title>
</head>
<body>
<h1>First Heading</h1>
<h2> Second Heading</h2>
<h3>Third Heading</h3>
<h5>Fivth Heading</h5>
<h6>Sixth Heading</h6>
</body>
</html>