HTML <footer> tag
HTML <footer> tag : Definition
• The <footer> tag used to define a footer of HTML document.
• The footer section conntains information about te document/web page such as about organisation, author information, copyright information, carriers, etc.
• The <footer> tag defines the footer color, size, footer-weight and face of text in the HTML document.
<footer> tag example :
<!DOCTYPE html> <html> <head> <title>footer tag example</title> <style> .column1 { float: left; width: 27%; height: 300px; } p { font-size:20px; font-weight:bold; } </style> </head> <body> <footer class="footer1"> <div class="column1"> <p>Company</p> <ul style="list-style-type:disc"> <li>About Us</li> <li>Careers</li> <li>Privacy Policy</li> <li>Contact Us</li> </ul> </div> <div class="column1"> <p>Learn</p> <ul> <li>JAVA</li> <li>Python</li> <li>C/C++</li> <li>JavaScript</li> </ul> </div> </footer> </body> </html>
OUTPUT :
The footer element example