-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathcontact.html
56 lines (56 loc) · 1.61 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KhGaurik</title>
<link rel="stylesheet" href="contact.css" />
</head>
<body>
<div class="hero">
<nav>
<h1><span>MY</span>Site</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
<li><a href="cart.html">Cart</a></li>
</ul>
<button>Sign Up!</button>
</nav>
</div>
<section id="main">
<h1><span>Connect</span> To Us</h1>
<p>We are happy To hear from you!</p>
<div class="inp">
<div class="groip">
<label>Name</label>
<input type="text" placeholder="John Doe">
</div>
</div>
<div class="inp">
<div class="groip">
<label>Email</label>
<input type="email" placeholder="[email protected]">
</div>
</div>
<div class="inp">
<div class="groip">
<label>Phone</label>
<input type="number" placeholder="9999999999">
</div>
</div>
<div class="msg">
<label>Message</label>
<textarea rows="10" placeholder="Your Message"></textarea>
</div>
<button>Submit</button>
</section>
<footer>
<ul>
<li>©Hacktoberfest2023</li>
<li>All Rights Reserved.</li>
</ul>
</footer>
</body>
</html>