You are on page 1of 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your E-Commerce Store</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to Your E-Commerce Store</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>

<section class="products">
<div class="product">
<img src="product1.jpg" alt="Product 1">
<h2>Product 1</h2>
<p>Price: $19.99</p>
<button>Add to Cart</button>
</div>

<div class="product">
<img src="product2.jpg" alt="Product 2">
<h2>Product 2</h2>
<p>Price: $29.99</p>
<button>Add to Cart</button>
</div>

<!-- Add more product divs as needed -->


</section>

<footer>
<p>&copy; 2023 Your E-Commerce Store. All rights reserved.</p>
</footer>
</body>
</html>

You might also like