HTML Dog
Skip to navigation

HTML Tag: footer

The footer of a page or section. This could contain content such as a postscript, appendix, or links to related pages, for example.

Optional Attributes

Global attributes

Example


<body>
    <section>
        <!-- stuff -->
        <footer>
            <!-- A footer for the section. -->
        </footer>
    </section>

    <footer>
        <!-- A footer for the page. -->
    </footer>
</body>