HTML TAG
Any HTML Document main part or it's depend HTML Tags. Tag is certain-est symbol. This tag writting a HTML program. Any type of tag we use. That Example: -<title>, <head>, <body> etc.
Generally every tag depends a single End tag. Example: -</title>, </head>, </body>
In this tag End purpose use "/" symbol.
- HEADING TAG: - Writting in a HTML Document looking a Heading part we use Heading Tag.
<h> Tag is <h1>, <h2>, <h3>, <h4>, <h5> and <h6>. There are End tag are available
</h1>,</h2>, </h3>, </h4>, </h5> and </h6>,
<h1> Tag Large Heading purpose use.
and <h6> Tag small heading purpose use.
This is a Page source code
<html>
<head>
<title>
Heading style
</title>
</head>
<body>
<h1>Heading- 1</h1>
<h2>Heading- 2</h2>
<h3>Heading- 3</h3>
<h4>Heading- 4</h4>
<h5>Heading- 5</h5>
<h6>Heading- 6</h6>
</body>
</html>
0 comments: