Meta Description" name="description" />
<!DOCTYPE html>
<html>
<head>
<title>CozyBlankets - Warmth You Can Feel</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #fdf6f0;
}
header {
background-color: #5c3d2e;
color: white;
padding: 20px;
text-align: center;
}
nav {
background-color: #7a5c4d;
padding: 10px;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
.hero {
padding: 60px;
text-align: center;
background-color: #f5e6dc;
}
.hero h1 {
font-size: 40px;
}
.products {
display: flex;
justify-content: center;
gap: 20px;
padding: 40px;
flex-wrap: wrap;
}
.product {
background: white;
padding: 20px;
width: 250px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 10px;
text-align: center;
}
.product img {
width: 100%;
border-radius: 10px;
}
.product button {
margin-top: 10px;
padding: 10px;
background-color: #5c3d2e;
color: white;
border: none;
cursor: pointer;
}
footer {
background-color: #5c3d2e;
color: white;
text-align: center;
padding: 20px;
}
@media (max-width: 768px) {
.products {
flex-direction: column;
align-items: center;
}
}
</style>
</head>
<body>
<header>
<h1>CozyBlankets</h1>
<p>Warmth You Can Feel</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#">Products</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
<section class="hero">
<h1>Premium Quality Blankets</h1>
<p>Soft • Warm • Luxury Comfort</p>
</section>
<section class="products">
<div class="product">
<img src="https://via.placeholder.com/250x200" alt="Soft Blanket">
<h3>Soft Fleece Blanket</h3>
<p>$29.99</p>
<button>Buy Now</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/250x200" alt="Wool Blanket">
<h3>Premium Wool Blanket</h3>
<p>$49.99</p>
<button>Buy Now</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/250x200" alt="Luxury Blanket">
<h3>Luxury King Blanket</h3>
<p>$79.99</p>
<button>Buy Now</button>
</div>
</section>
<footer>
<p>© 2026 CozyBlankets. All Rights Reserved.</p>
</footer>
</body>
</html>2
2
3KB
3KB
96.0ms
184.0ms
229.0ms