HTML Footer

HTML footer tag specifies a footer for the content or document. Basically, it is placed at the bottom side of the web page and it consists of author, copyright information, privacy policy, use of terms and conditions, etc.

General Syntax

      
        <footer>Footer Tag</footer>      
    
Try it now

Source Code

          
            <footer>
  <p>Copyright &copy; All right reserved.</p>
  <p>About us</p>
</footer>          
        
Try it now

Source Code : Output

Copyright © All right reserved.

About us

Please keep in mind that a footer is wrapped inside a <footer> tag.

Web Tutorials

HTML Footer
Html Tutorial HTML
Javascript Tutorial JAVASCRIPT
Css Tutorial CSS
Bootstrap 5 Tutorial BOOTSTRAP 5
Bootstrap 4 Tutorial BOOTSTRAP 4