HTML MENU BAR
<!DOCTYPE html>
<html>
<head>
<title>Menu</title>
<style type="text/css">
body{
background: green;
}
ul{
background: red;
color:red;
list-style-type: none;
font-size: 23px;
}
a{
text-decoration: none;
overflow: inherit;
font-size: 30px;
color: white;
}
ul li{
display: inline;
margin-top: 0px;
margin-left: 100px;
margin-right: 20px;
}
nav{
background: red;
text-align: center;
color:white;
font-size: 26px;
font-weight: bold;
margin-top: 0px;
}
</style>
</head>
<body>
<div class="menu">
<ul>
<li><a href="">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
</ul>
<nav class="welcome">WELCOME TO KT MANYANGOBE HAUSA SITE</nav>
</div>
</body>
</html>
Comments