Product Listing Page
Product Listing Page
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Product Listing</title>
<style>
</style>
</head>
<body>
<header>
<h1>Product Listings</h1>
</header>
<div class="product-list">
<div class="product-item">
<h3>Product 1</h3>
<p class="price">$19.99</p>
</div>
<div class="product-item">
<img src="https://via.placeholder.com/250" alt="Product 2">
<h3>Product 2</h3>
<p class="price">$29.99</p>
</div>
<div class="product-item">
<h3>Product 3</h3>
<p class="price">$39.99</p>
</div>
</div>
</body>
</html>