Footer
Course- HTML5 >
The footer element is used to denote things like the author's name, contact information, and copyright patent to mention a few. Footer allows the programmer to give a general idea about the website. However, footers can be used more thanonceinadocument.
Let's look at an example of a footer element using the following code snippet:
<!DOCTYPE html>
<html>
<body>
<header>
<h2> Importance of the Footer element </h2><hr>
</header>
<p> Footer element gives additional info about the website or any blog </p>
<footer>
<a href="//www.fastread.in"> Fastread Tutorials </a>
<br>
<p> Copyright by <a href=http://aitechtonic.com> Aitechtonic</a> </p>
</footer>
</body>
</html>
Importance of the Footer element
Footer element gives additional info about the website or any blog