Document 1
Document 1
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<title>Welcome to my webpage</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #d3d3d3;
}
header {
background-color: rgb(185, 213, 93);
color: white;
text-align: center;
padding: 10px 0;0
}
nav {`
display: flex;
justify-content: center;
background-color: rgb(183, 224, 88);
padding: 10px;
}
nav a {
color: rgb(220, 6, 6);
margin: 0 15px;
text-decoration: none;
}
section {
background-color: rgb(170, 31, 100);
padding: 20px;
margin: 20px;
text-align:;
}
footer {
left:0;
bottom:0;
width: 100%;
background-color: bisque;
margin:0px;
padding:1em 0.5em 0.5em 0.5em;
text-align: center;
position: fixed;
}
</style>
</head>
<body>
<header>
<h1>Welcome to my webpage</h1>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
<section>
<h2>About This Page</h2>
<p>This is a simple webpage to demonstrate styling and linking.</p>
<a href="http://example.com">Visit Example.com</a>
</section>
<hr>
<footer>
<p>©2024 webpage</p>
</footer>
</body>
</html>