0% found this document useful (0 votes)
6 views2 pages

My First Website: Learn Web Design

Uploaded by

guptanidhi74862
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views2 pages

My First Website: Learn Web Design

Uploaded by

guptanidhi74862
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

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;
margin: 0;
padding: 0;
}
header {
background-color: #001bff;
padding: 1em;
text-align: center;
color: white;
}
nav {
background-color: #000000;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: cyan;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
main {
padding: 2em;
}
footer {
background-color: #00ffc9;
color: white;
text-align: center;
padding: 1em;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>

<header>
<h1>Welcome to My First Website</h1>
<p>Time Pass </p>
</header>

<nav>
<a href="[Link] Minecraft PE Latest
Version</a>
<a href="[Link] Me</a>
<a href="[Link]
20_20817.html">Best Shader For MCPE 1.19+</a>
</nav>

<main>
<h2>About This Site</h2>
<p>I Made It to Learn How to Make a Website</p>
</main>

<footer>
<p>&copy; 2025 My Website. All rights reserved.</p>
</footer>

</body>
</html>

You might also like