Footer Tag in HTML || HTML Footer Tag
×

HTML FOOTER (<footer>) Tag

2547

HTML <footer> tag is new in HTML5. It is generally used to represent the end section of the website. It is generally at the bottom of the page.

HTML <footer> tag contains information about the author of the document, copyright information, links to related documents, sitemap, back to top links, etc.

The footer tag consists of a start tag as well as an end tag. <footer></footer>

Program:

<!DOCTYPE html>
<html>
<head>
<title>HTML footer Tag</title>
<style>
a {
font-size:14px;
text-decoration:none;
text-transform: uppercase;
font-weight: 600;
color: red;
}
p {
font-size:25px;
}
</style>
</head>
<body>
<footer>
<nav>
<p>
<a href="https://www.codingtag.com/">Home</a> |
<a href="https://www.codingtag.com/about">About Us</a> |
<a href="https://www.codingtag.com/privacy-policy">Privacy Policy</a> |
<a href="https://www.codingtag.com/disclaimer">Disclaimer</a>
</p>
</nav>
<p>2019 | Coding Tag.</p>
</footer>
</body>
</html>

Output:




Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments