SyntaxStudy
Sign Up
Home HTML Reference <footer>

<footer>

tag HTML5

Represents a footer for its nearest ancestor, containing information like author, copyright, or links.

Syntax

<footer> ... </footer>

Example

html
<footer>
    <div class="footer-grid">
        <div><h3>Company</h3><a href="/about">About</a></div>
        <div><h3>Legal</h3><a href="/privacy">Privacy</a></div>
    </div>
    <p>&copy; 2024 MyCompany. All rights reserved.</p>
</footer>