<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Menu Bar</title>
<style>
body{
margin: 0;
padding: 0;
}
.nav{
background-color: #fbb;
margin-left: 150px;
margin-right: 150px;
}
h1{
font-family: sans-serif;
font-size: 36px;
color: #adf;
display: block;
background-color: deepskyblue;
}
a{
text-decoration: none;
display: inline-block;
background-color: deepskyblue;
font-size: 35px;
}
a:hover{
color: black;
font-family: courier;
background-color: lightgoldenrodyellow;
font-weight: bolder;
border-bottom: green;
}
</style>
</head>
<body>
<div class="nav" align="center">
<h1>Menu Bar</h1>
<span><a href="h23.jpg">Home</a> </span>
<span><a href="h3.jpg">Insert</a> </span>
<span><a href="h3.jpg">Layout</a> </span>
<span><a href="#">About Us</a> </span>
</div>
</body>
</html>