Heading Tag (<h1-h6> — </h1-h6>)
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Codershelpline</title>
</head>
<body>
<h1>https://www.Codershelpline.com</h1>
<h2>https://www.Codershelpline.com</h2>
<h3>https://www.Codershelpline.com</h3>
<h4>https://www.Codershelpline.com</h4>
<h5>https://www.Codershelpline.com</h5>
<h6>https://www.Codershelpline.com</h6>
</body>
</html>
<!-- NB : This tag creates and display six different sizes of heading text in a web page. -->
Header Tag (<header> </header>)
<!DOCTYPE html>
<html>
<body>
<header>
<h1>Codershelpline.com</h1>
<h3>Codershelpline.com</h3>
<p>
The header element mainly represents a container for introductory content in header region.
<br>It also contains menu links/list. A header may also contains one or more heading elements
<br> h1-h6 ,logo or icon, authorship information etc.we can also use several header elements in
one document <br> as per requirement.A header element cannot be placed within a footer, address
or another header element.<br>
</p>
</header>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<footer>
<p>Codershelpline.com</p>
<p> The footer tag defines a footer area of a page/a document or section.<br>
A footer element may have copyright information,contact information,sitemap,<br>
back to top links,related documents summary etc.We can have several footer <br>
elements in one document.
</p>
</footer>
</body>
</html>
0 Comments