Basic_CSS_Website_Code
Basic_CSS_Website_Code
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Basic CSS Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
nav {
background-color: #444;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
}
main {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 15px 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Basic CSS Website</h1>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
<main>
<h2>Main Content</h2>
<p>This is a simple webpage styled with basic CSS. Use this as a starting point for your projects.</p>
</main>
<footer>
<p>© 2025 My Website</p>
</footer>
</body>
</html>