UK[ˈfʊtə(r)] US[ˈfʊtɚ]

n. Footer; a person (or thing) tall... feet

vi. (Scotland) fiddle with, play with, touch Make

plural: footers

html footer tag syntax

Function:Define the footer of the document or section.

Description: <footer> element should contain information about the element it contains. Footers typically contain the document's author, copyright information, links to terms of use, contact information, and more. You can use multiple <footer> elements in a document.

Note: The <footer> tag is a new tag in HTML 5.

html footer tag example

<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<body>

<footer>
    <p>PHP中文网:独家原创,永久免费的在线php视频教程,php技术学习阵地!</p>
    <p>Copyright 2014-2017 http://www.php.cn/</p>
</footer>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance