HTML FOOTER

The <footer> element

The <footer> element defines the footer of a web page or a section. As a rule, it contains copyright information, contact details, navigation links, etc.

Take a look at the example below:

<!DOCTYPE html>

<html>

<head>

            <title></title>

</head>

<header>

            <h1>My First Website</h1>

             </header>

<body>

            <nav>

                        <a href=”#”> MENU</a>

                        <a href=“#”> CONTACT US</a>

                        <a href=”#”> ABOUT US</a>

            </nav>

            <hr>

<p> The series features comic fights between two lifelong enemies, a house cat (Tom) and a mouse (Jerry). The plots of each short usually center on Tom and Jerry’s numerous attempts to have the best of each other and the mayhem and destruction that follows. Despite Tom’s clever strategies (whether they work or not) </p>

<footer> Copyright Smart Brains Kenya </footer>

</body>

</html>

Scroll to Top