Table of Contents
Example
Simply Easy Learning
Home Web Front-end HTML Tutorial How can we create footer for document or section in HTML5?

How can we create footer for document or section in HTML5?

Sep 13, 2023 am 10:45 AM
html footer create

How can we create footer for document or section in HTML5?

Use the HTML

tag to display the footer of a document or section. You can try running the following code to implement the
tag −

Example

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Footer Tag</title>
   </head>
   <body>
      <header>
         <h1 id="Simply-Easy-Learning">Simply Easy Learning</h1>
         <p>You&#39;re visiting tutorialspoint.com - tutorial hub for simply easy learning.</p>
      </header>
      <footer>
         &copy; Copyright 2018, All Rights Reserved
      </footer>
   </body>
</html>
Copy after login

The above is the detailed content of How can we create footer for document or section in HTML5?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn