<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Generic Menu Website</title>
<style>
/* Basic CSS for styling the menu */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
background-color: #444;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav li {
display: inline;
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
/* Add more styles as needed */
</style>
</head>
<body>
<header>
<h1>Generic Menu Website</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<h2>Welcome to our Generic Menu Website</h2>
<p>This is a simple example of a website with a generic menu. You can customize the content and add more pages as needed.</p>
</main>
<footer>
<p>© 2023 Generic Menu Website</p>
</footer>
</body>
</html>