1 Commits

Author SHA1 Message Date
13dad0cdc0 Footer html 2026-04-03 16:39:20 +00:00

View File

@@ -29,6 +29,20 @@
nav a:hover { nav a:hover {
text-decoration: underline; text-decoration: underline;
} }
footer {
background-color: #222;
color: #ddd;
padding: 1rem 2rem;
text-align: center;
font-size: 0.9rem;
}
footer a {
color: #66caff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style> </style>
</head> </head>
<body> <body>
@@ -47,5 +61,8 @@
<p>This is a sample header section with navigation.</p> <p>This is a sample header section with navigation.</p>
</section> </section>
</main> </main>
<footer>
<p>&copy; 2026 My Site. All rights reserved. <a href="#contact">Contact us</a>.</p>
</footer>
</body> </body>
</html> </html>