-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.html
More file actions
46 lines (42 loc) · 1.69 KB
/
products.html
File metadata and controls
46 lines (42 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kadal Makri - Products</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Our Products</h1>
<p>Browse our YouTube merchandise and delicious food items!</p>
</header>
<main>
<h2>Merchandise</h2>
<div class="product">
<img src="assets/images/shirt.jpg" alt="T-Shirt" width="200px">
<p><strong>Kadal Makri T-Shirt</strong></p>
<p>Price: $20</p>
<a href="https://payhip.com/buy-shirt" target="_blank" class="order-button">Buy Now</a>
</div>
<h2>Food Items</h2>
<div class="product">
<img src="assets/images/snack.jpg" alt="Snack" width="200px">
<p><strong>Spicy Snacks</strong></p>
<p>Price: $5</p>
<a href="https://payhip.com/buy-snack" target="_blank" class="order-button">Order Now</a>
</div>
<!-- EP's Pickles Section -->
<div class="product">
<img src="assets/images/eps-pickles-logo.jpg" alt="EP's Pickles Logo" width="200px">
<p><strong>EP's Pickles - Taste of Kerala</strong></p>
<p>Authentic Kerala-style pickles, made with love and tradition.</p>
<a href="https://payhip.com/b/ksJha" target="_blank" class="order-button">Order Now</a>
</div>
</main>
<footer>
<a href="index.html">Home</a> | <a href="products.html">Products</a>
<p>© 2025 Kadal Makri | Contact: <a href="mailto:arun.ar.alm@gmail.com">arun.ar.alm@gmail.com</a></p>
</footer>
</body>
</html>