Website
Website
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
nav {
background-color: #444;
padding: 10px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px;
margin-right: 10px;
display: inline-block;
}
section {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Your Website Name</h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
<section>
<h2>Welcome to Your Website!</h2>
<p>This is the main content of your website.</p>
</section>
<footer>
<p>© 2023 Your Website. All rights reserved.</p>
</footer>
</body>
</html>