BINGO OCTOBER 19th 2023
Sign up now to get a BINGO card! We will email you the link to get the card before Oct 19th.
The fun will start at 10AM (Arizona Time) October 19th.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Grid</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Our Products</h1>
<div class="grid">
<!-- Item 1 -->
<div class="item">
<img src="https://via.placeholder.com/150" alt="Product 1">
<h2>Product 1</h2>
<p>Short description of Product 1.</p>
<span class="price">$19.99</span>
</div>
<!-- Item 2 -->
<div class="item">
<img src="https://via.placeholder.com/150" alt="Product 2">
<h2>Product 2</h2>
<p>Short description of Product 2.</p>
<span class="price">$29.99</span>
</div>
<!-- Item 3 -->
<div class="item">
<img src="https://via.placeholder.com/150" alt="Product 3">
<h2>Product 3</h2>
<p>Short description of Product 3.</p>
<span class="price">$39.99</span>
</div>
<!-- Item 4 -->
<div class="item">
<img src="https://via.placeholder.com/150" alt="Product 4">
<h2>Product 4</h2>
<p>Short description of Product 4.</p>
<span class="price">$24.99</span>
</div>
<!-- Item 5 -->
<div class="item">
<img src="https://via.placeholder.com/150" alt="Product 5">
<h2>Product 5</h2>
<p>Short description of Product 5.</p>
<span class="price">$34.99</span>
</div>
<!-- Item 6 -->
<div class="item">
<img src="https://via.placeholder.com/150" alt="Product 6">
<h2>Product 6</h2>
<p>Short description of Product 6.</p>
<span class="price">$44.99</span>
</div>
<!-- Item 7 -->
<div class="item">
<img src="https://via.placeholder.com/150" alt="Product 7">
<h2>Product 7</h2>
<p>Short description of Product 7.</p>
<span class="price">$14.99</span>
</div>
<!-- Item 8 -->
<div class="item">
<img src="https://via.placeholder.com/150" alt="Product 8">
<h2>Product 8</h2>
<p>Short description of Product 8.</p>
<span class="price">$54.99</span>
</div>
<!-- Item 9 -->
<div class="item">
<img src="https://via.placeholder.com/150" alt="Product 9">
<h2>Product 9</h2>
<p>Short description of Product 9.</p>
<span class="price">$64.99</span>
</div>
</div>
</div>
</body>
</html>