Write a JavaScript program to create highlighted menu.
<html>
<head>
<title>Highlighted Menu Example</title>
<style>
.link {
text-decoration: none;
padding: 10px 16px;
background-color: gray;
font-size: 18px;
}
.active, .link-hover {
background-color: red;
color: white;
}
</style>
</head>
<body>
<h1>Highlighted Menu</h1>
<p>Move the mouse over the menu items.</p>
<div id="myDiv">
<a href="#file" class="link">File</a>
<a href="#edit" class="link">Edit</a>
<a href="#view" class="link">View</a>
<a href="#about" class="link">About</a>
</div>
</body>
</html>
