footer
I. Description
The HTML footer element is used to act as a container for information that appears at the end of a piece of sectioning content; such as copyright information, date of publication information, authorship, or contact information, etc.
When the footer element is not inside of a sectioning element then it is treated as the footer for the entire web page.
II. Examples
<!DOCTYPE html>
<html>
<head>
<title>footer Example Page</title>
</head>
<body>
<h1>Recipes</h1>
<article>
<h2>Irish Beef Stew Recipe</h2>
<p>This beef stew is rich and savory without being overly heavy.</p>
<div>
<h3>Ingredient List</h3>
<ol>
<li>Beef</li>
<li>Garlic</li>
<li>Stout (beer)</li>
<li>Salt</li>
<li>Carrots</li>
<li>Russet Potatoes</li>
</ol>
</div>
<div>
<h3>Instructions</h3>
<ol>
<li>Peel the potatoes and the carrots</li>
<li>Cut up the ingredients</li>
<li>Put everything into a pot and let it cook for 5 hours</li>
</ol>
</div>
<footer>
<small>
<p>Author: John Doe</p>
<p>Date of Publication: 2025-MAR-13</p>
<p>Copyright 2025, All Rights Reserved</p>
</small>
</footer>
</article>
<article>
<h2>Chocolate Cake Recipe</h2>
<div>
<h3>Ingredient List</h3>
<ol>
<li>Dutch Processed Cocoa</li>
<li>Butter</li>
<li>Eggs</li>
<li>Sugar</li>
<li>Powdered Sugar</li>
</ol>
</div>
<div>
<h3>Instructions</h3>
<ol>
<li>Bring the ingredients together</li>
<li>Bake the cake</li>
</ol>
</div>
<footer>
<small>
<p>Author: John Doe</p>
<p>Date of Publication: 2025-MAR-13</p>
<p>Copyright 2025, All Rights Reserved</p>
</small>
</footer>
</article>
<footer>
<p>Copyright Rowland Industries LLC 2025, All Rights Reserved</p>
</footer>
</body>
</html>