0% found this document useful (0 votes)
9 views2 pages

HighlightedMenu HTML

Uploaded by

sujal patade
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views2 pages

HighlightedMenu HTML

Uploaded by

sujal patade
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Highlighted Menu</title>
</head>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}

nav {
background-color: #333;
padding: 10px;
}

.menu {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-around;
}

.menu li {
margin: 0;
}

.menu a {
text-decoration: none;
color: white;
padding: 10px 20px;
display: block;
transition: background-color 0.3s ease;
}

.menu a:hover {
background-color: #555;
}

.menu a.active {
background-color: #ffcc00;
color: #333;
font-weight: bold;
}

</style>
<body>
<nav>
<ul class="menu">
<li><a href="#" class="active">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</body>
</html>

You might also like