<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
body {
margin: 0;
font-family: Arial;
}
header {
position: fixed;
top: 0;
width: 100%;
background: black;
color: white;
padding: 15px;
z-index: 1000;
}
nav a {
color: white;
margin-right: 20px;
text-decoration: none;
}
.content {
margin-top: 80px;
padding: 20px;
}
</style>
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="performers.html">Performers</a>
<a href="volunteers.html">Volunteers</a>
</nav>
</header>
<div class="content">
<h1>Welcome</h1>
<p>This is the page content.</p>
</div>
</body>
</html>