<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Basic Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
padding: 1em 0;
text-align: center;
}
nav {
background-color: #333;
}
nav a {
color: white;
padding: 14px 20px;
display: inline-block;
text-decoration: none;
}
nav a:hover {
background-color: #575757;
}
main {
padding: 20px;
}
footer {
background-color: #ddd;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
</nav>
<main>
<h2>About This Site</h2>
<p>This is a basic website built with HTML and CSS. It's fully responsive and can be used as a starting point for your own site.</p>
</main>
<footer>
<p>© 2025 My Basic Website</p>
</footer>
</body>
</html>