content logo

Learn HTML:

Html footer tag

The HTML <footer> tag specifies a footer for a document or section.

Example

<!DOCTYPE html>
<html>
<head>
<title>HTML Footer Tag</title>
</head>
<body>
<header>
<h1>Simply Easy Learning</h1>
<p>You're visiting codefreetutorial.com - for simply easy learning.</p>
</header>
<footer>
© Copyright 2014, All Rights Reserved
</footer>
</body>
</html>

This will produce following result:

Simply Easy Learning

You're visiting codefreetutorial.com - for simply easy learning.

© Copyright 2014, All Rights Reserved

#

HTML Footer Example

#

HTML Footer Code

#

HTML Footer Tutorial