-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
30 lines (29 loc) · 981 Bytes
/
contact.html
File metadata and controls
30 lines (29 loc) · 981 Bytes
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
<!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>
<img src="shirt.jpg" alt="Kadal Makri T-Shirt" width="200px">
<p><strong>Kadal Makri T-Shirt</strong></p>
<p>Price: $20</p>
<a href="https://payhip.com/b/ksJha" target="_blank">Buy Now</a>
</div>
</main>
<footer>
<a href="index.html">Home</a> | <a href="products.html">Products</a> | <a href="contact.html">Contact</a>
<p>Contact us: <a href="mailto:arun.ar.alm@gmail.com">arun.ar.alm@gmail.com</a></p>
<p>© 2025 Kadal Makri</p>
</footer>
</body>
</html>