-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
40 lines (36 loc) · 1.22 KB
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contactus</title>
<link rel="stylesheet" href="Home.css">
</head>
<body>
<div class="top">
<label for="Shopeasy" class="Shopeasy">Shopeasy</label>
<a href="login.html" class="login">login</a>
<a href="Registration.html" class="reg">Registration</a>
<a href="contact.html" class="contact">Contact</a>
</div>
<div class="navbar">
<ul class="n1">
<li><a href="Home.html">Home</a></li>
<li><a href="Trending.html">Trending</a></li>
<li>Mens</li>
<li>Women</li>
<li>Kids</li>
<li>mobiles</li>
<li>offers</li>
</ul>
</div>
<form action="contact.php" class="contact_form">
<h1>Contact Us</h1>
<label for="email" class="contact_label">Enter email</label>
<input type="email" class="input_contact" placeholder="Enter your email">
<label for="text" class="contact_label">Message</label>
<textarea name="msg" id="" cols="30" rows="10"></textarea>
<button class="btn_submit_contact" type="submit">submit</button>
</form>
</body>
</html>