<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blinds Co.</title>
<link rel="stylesheet" href="style.css">
<style>
/* Reset some default styles */
body, figure, h1, h2, h3, p {
margin: 0;
padding: 0;
}
/* Global styles */
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
background-color: #f8f8f8;
}
/* Header styles */
header {
background-color: #ffffff;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
}
.logo {
font-size: 24px;
font-weight: bold;
color: #333333;
text-decoration: none;
}
nav ul {
list-style: none;
margin-top: 10px;
}
nav ul li {
display: inline-block;
margin-right: 20px;
}
nav ul li a {
color: #333333;
text-decoration: none;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #007bff;
}
/* Hero section styles */
#home {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-image: url('https://via.placeholder.com/1600x900');
background-size: cover;
background-position: center;
color: #ffffff;
text-align: center;
}
.hero h1 {
font-size: 48px;
margin-bottom: 20px;
}
.hero p {
font-size: 18px;
margin-bottom: 30px;
}
.btn {
display: inline-block;
padding: 15px 30px;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
color: #ffffff;
background-color: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #0056b3;
}
/* Products section styles */
#products {
padding: 80px 0;
background-color: #ffffff;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
h2 {
font-size: 36px;
margin-bottom: 30px;
text-align: center;
}
.product-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 30px;
}
.product {
background-color: #ffffff;
box-shadow: 0px 2px 4px rgba(0, 0, 0,
0.1);
padding: 20px;
border-radius: 5px;
transition: transform 0.3s ease;
cursor: pointer;
}
.product:hover {
transform: translateY(-5px);
}
.product img {
max-width: 100%;
height: auto;
}
.product h3 {
font-size: 24px;
margin-top: 10px;
margin-bottom: 15px;
}
.product p {
font-size: 16px;
color: #777777;
}
/* Footer styles */
footer {
padding: 20px;
background-color: #333333;
color: #ffffff;
text-align: center;
}
.footer-links {
margin-top: 10px;
}
.footer-links a {
color: #ffffff;
margin: 0 10px;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #007bff;
}
</style>
</head>
<body>
<header>
<div class="container">
<a href="#" class="logo">Blinds Co.</a>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="home">
<div class="container">
<div class="hero">
<h1>Quality Blinds for Your Home</h1>
<p>Transform your windows with our stylish and functional blinds.</p>
<a href="#products" class="btn">View Products</a>
</div>
</div>
</section>
<section id="products">
<div class="container">
<h2>Our Products</h2>
<div class="product-list">
<div class="product">
<img src="https://via.placeholder.com/400x300" alt="Product 1">
<h3>Vertical Blinds</h3>
<p>Classic and versatile blinds that provide privacy and light control.</p>
</div>
<div class="product">
<img src="https://via.placeholder.com/400x300" alt="Product 2">
<h3>Roller Blinds</h3>
<p>Sleek and modern blinds that are easy to use and clean.</p>
</div>
<div class="product">
<img src="https://via.placeholder.com/400x300" alt="Product 3">
<h3>Wooden Blinds</h3>
<p>Elegant and timeless blinds that add warmth and beauty to any room.</p>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<p>If you have any questions or would like to request a quote, please fill out the form below or give us a call.</p>
<form>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section