HTML FOOTER (<footer>) Tag
0 2775
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:
Share:
Comments
Waiting for your comments