pages/menu.html

35 lines
676 B
HTML
Raw Normal View History

2023-12-08 11:08:18 +00:00
<!-- Other existing styles, meta tags, and scripts -->
<style>
/* Paste the CSS styles for the menu here */
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
</style>
2023-12-08 10:58:11 +00:00
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>