jjjjjjj

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Website</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 20px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
padding: 10px 0;
}
nav a {
color: #fff;
text-decoration: none;
padding: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 20px;
margin: 20px;
background-color: #fff;
border: 1px solid #ccc;
}
footer {
text-align: center;
background-color: #333;
color: #fff;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
</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>
<section>
<h2>Home</h2>
<p>Welcome to my website! This is the home page.</p>
</section>
<section>
<h2>About</h2>
<p>This section is about me and my interests.</p>
</section>
<section>
<h2>Services</h2>
<p>Here are the services I offer.</p>
</section>
<section>
<h2>Contact</h2>
<p>You can reach me at example@example.com.</p>
</section>
<footer>
<p>&copy; 2024 My Website. All rights reserved.</p>
</footer>
</body>
</html>

You might also like