`html
<!DOCTYPE html>
<html>
<head>
<title>Menu Bar Example</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
.menu-bar {
background-color: #333;
overflow: hidden;
display: flex;
justify-content: center;
}
.menu-bar a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
transition: background-color 0.3s;
}
.menu-bar a:hover {
background-color: #575757;
}
</style>
</head>
<body>
<div class="menu-bar">
<a href="#about">About Us</a>
<a href="#services">Our Services</a>
<a href="#order">Order and Pay</a>
<a href="#contact">Contact Us</a>
</div>
<script>
// Optional JavaScript if you want to add dynamic behavior later
console.log("Menu bar loaded successfully!");
</script>
</body>
</html>
`