HTML
tag

(*-*)浩
Release: 2019-11-20 15:34:04
Original
3697 people have browsed it

HTML

Tag

HTML <footer> tag

##Internet Explorer 9, Firefox, Opera, Chrome, and Safari support the
tag.

Note: Internet Explorer 8 and earlier versions do not support the

tag.                                   (Recommended learning: html tutorial)

Definition and usage

tag defines the footer of a document or section. The

element should contain information about its containing element.

The footer typically contains the document's author, copyright information, terms of use link, contact information, and more.

You can use multiple
elements in a document.

Differences between HTML 4.01 and HTML 5

The
tag is a new tag in HTML 5.

Tip

Tip: Contact information within the

element should be in the
tag.

Example

The footer section in the document:

<!DOCTYPE html>
<html>
<body>

<footer>
  <p>Posted by: W3School</p>
  <p>Contact information: <a href="mailto:someone@example.com">someone@example.com</a>.</p>
</footer>

</body>
</html>
Copy after login

The above is the detailed content of HTML

tag. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template