You are on page 1of 1

<html>

<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #f2f2f2;
}

li {
float: left;
}

li a {
display: inline-block;
text-align: center;
padding: 14px 16px;
color:#000000;
text-decoration: none;
}

li a:hover {
background-color: #ffffff;
}

</style>
</head>
<body>

<ul>
<li><a href=#>Home</a></li>
<li><a href=#>Contact</a></li>
<li><a href=#>About</a></li>
</ul>

</body>
</html>

You might also like