!DOCTYPE. HTML
!DOCTYPE. HTML
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Business Name</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
}
nav {
background-color: #444;
color: white;
text-align: center;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
}
nav a:hover {
background-color: #555;
}
.container {
max-width: 960px;
margin: 20px auto;
padding: 20px;
background-color: white;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Your Business Name</h1>
<p>Welcome to our website!</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#">Services</a>
<a href="#">Products</a>
<a href="#">Contact</a>
</nav>
<div class="container">
<h2>About Us</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam aliquam
purus at dui dictum, nec consequat ipsum tincidunt.</p>
</div>
<footer>
<p>© 2023 Your Business Name. All rights reserved.</p>
</footer>
</body>
</html>