Learn Python, Microsoft 365 and Google Workspace
Create a horizontal navigation bar with five menu items using HTML and CSS. The menu should be visually appealing and responsive.
<ul>
) to structure the menu.<li>
element.<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Horizontal Menu</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</body>
</html>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
nav {
background-color: #333;
padding: 10px 0;
}
.menu {
list-style: none;
display: flex;
justify-content: center;
padding: 0;
margin: 0;
}
.menu li {
margin: 0 15px;
}
.menu a {
text-decoration: none;
color: white;
font-size: 18px;
padding: 10px 15px;
display: block;
transition: 0.3s;
}
.menu a:hover {
background-color: #ff6600;
color: #fff;
border-radius: 5px;
}