<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Furniture Store</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
}
.product {
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin-bottom: 20px;
padding: 20px;
border-radius: 5px;
}
.product img {
max-width: 100%;
height: auto;
border-radius: 5px;
margin-bottom: 10px;
}
.product h2 {
font-size: 1.4rem;
margin-bottom: 10px;
}
.product p {
font-size: 1rem;
line-height: 1.6;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
}
@media (min-width: 768px) {
.container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-gap: 20px;
}
}
</style>
</head>
<body>
<header>
<h1>Furniture Store</h1>
<p>Discover our latest collection of stylish furniture.</p>
</header>
<div class="container">
<div class="product">
<img src="https://via.placeholder.com/400x300" alt="Product 1">
<h2>Modern Sofa Set</h2>
<p>A stylish sofa set for your living room. Comes with matching cushions and coffee table.</p>
<p>$799.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/400x300" alt="Product 2">
<h2>Wooden Dining Table</h2>
<p>Handcrafted dining table made from solid wood. Comfortably seats six people.</p>
<p>$499.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/400x300" alt="Product 3">
<h2>Leather Recliner Chair</h2>
<p>Luxurious leather recliner chair with ergonomic design. Perfect for relaxation.</p>
<p>$299.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/400x300" alt="Product 4">
<h2>Minimalist Desk</h2>
<p>Simple and elegant desk for your home office. Features spacious drawers and a smooth finish.</p>
<p>$199.99</p>
<button>Add to Cart</button>
</div>
</div>
<footer>
<p>© 2024 Furniture Store. All rights reserved.</p>
</footer>
</body>
</html>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter