-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
44 lines (38 loc) · 986 Bytes
/
Copy pathcontact.html
File metadata and controls
44 lines (38 loc) · 986 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<html>
<head>
<title>Contact Us</title>
</head>
<body bgcolor="pink">
<center>
<h1>Contact Us 📞</h1>
<hr>
<a href="home.html">Home</a>    
<a href="products.html">Products</a>    
<a href="cart.html">Cart</a>    
<a href="task.html">Back</a>    
</center>
<hr>
<br>
<center>
<form>
Name 👮:
<input type="text"><br><br>
Email 📧:
<input type="email"><br><br>
Message 📩:<br>
<textarea rows="5" cols="30"></textarea><br><br>
<input type="submit" value="Send">
</form>
</center>
<br>
<hr>
<center>
<h3 style="color:blue">Address</h3>
<p>Chennai, Tamil Nadu, India</p>
<hr>
</center>
<center>
<p>© 2026 Apna Store | All Rights Reserved</p>
</center>
</body>
</html>