SDL 1
SDL 1
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GreenLife - Eco-Friendly Products</title>
<style>
/* Reset and base styles */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header styles */
header {
background-color: #2ecc71;
color: white;
padding: 1rem 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
}
.nav-links {
display: flex;
gap: 1rem;
}
.nav-links a {
color: white;
text-decoration: none;
}
/* Footer styles */
footer {
background-color: #333;
color: white;
padding: 2rem 0;
text-align: center;
}
/* Responsive styles */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
}
</style>
</head>
<body>
<header>
<nav class="container">
<div class="logo">GreenLife</div>
<div class="nav-links">
<a href="#home">Home</a>
<a href="#features">Features</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</nav>
</header>
<main>
<section class="hero" id="home">
<div class="container">
<h1>Eco-Friendly Products for a Sustainable Future</h1>
<p>Discover our range of environmentally conscious products that help you
reduce your carbon footprint.</p>
<a href="#" class="cta-button">Shop Now</a>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 GreenLife. All rights reserved.</p>
</div>
</footer>
</body>
</html>
Output: