<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Awesome Website</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
/* Replace with your own background image */
height: 100vh;
width: 100%;
background-image: url('https://picsum.photos/id/64/200/300');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
img {
max-width: 100%;
}
.navbar {
background-color: rgba(187, 157, 157, 0.7); /* Semi-transparent black background */
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar-logo {
color: #fff;
font-size: 24px;
font-weight: bold;
}
.navbar-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.navbar-links li {
margin-right: 20px;
}
.navbar-links a {
text-decoration: none;
color: #fff;
font-weight: 500;
}
</style>
</head>
<body>
<nav class="navbar">
<img src=" 'https://picsum.photos/id/64/200/300'" alt="" srcset="">
<div class="navbar-logo">My Website</div>
<ul class="navbar-links">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<!-- Rest of your website content goes here -->
</body>
</html>