Hhh
unknown
html
a year ago
1.7 kB
6
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Store</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Our Store</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h2>Welcome to Our Store</h2>
<p>Explore our wide range of products.</p>
</div>
</section>
<section class="products">
<div class="container">
<h2>Featured Products</h2>
<div class="product-grid">
<div class="product">
<img src="product1.jpg" alt="Product 1">
<h3>Product 1</h3>
<p>$19.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product2.jpg" alt="Product 2">
<h3>Product 2</h3>
<p>$24.99</p>
<button>Add to Cart</button>
</div>
<!-- Add more products as needed -->
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Our Store. All rights reserved.</p>
</div>
</footer>
</body>
</html>Editor is loading...
Leave a Comment