How do I use the footer html tag?



  • The footer tag is a semantic element.

    The footer tag would go at the end of an html document or a blog article, commonly used for copyright information, privacy, emails, contacts, reference links and so on.

    <!DOCTYPE html>
    <html>
    <body>
    
    <footer>
      <p>Lorem ipsum</p>
      <p>Reference Link: https://www.lipsum.com/</p>
    </footer>
    
    </body>
    </html>
    

Log in to reply
 

© Lightnetics 2024