Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>

<head>
<style>
footer {
text-align: center;
padding: 20px;
background-color: #f1f1f1;
/* Light gray background */
color: #333;
width: 100%;
}

address {
font-style: normal;
/* Removes default italics */
}
</style>
</head>

<body>

<main>
<!-- Main content goes here -->
<h1>Website Content</h1>
<p>This is the main content area of the webpage.</p>
</main>

<footer>
<p>&copy; 2026 My Website</p>
<address>
Contact us at:
<a href="mailto:example@example.com">example@example.com</a>
</address>
<nav>
<a href="/about">About Us</a> |
<a href="/privacy">Privacy Policy</a>
</nav>
</footer>

</body>

</html>