-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
95 lines (86 loc) · 3.39 KB
/
contact.html
File metadata and controls
95 lines (86 loc) · 3.39 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gym Club</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="utils.css">
</head>
<body>
<div class="container mx-auto">
<header>
<nav class="flex justify-between">
<div class="flex items-center font-bold">Gym Club</div>
<ul class="navbar flex items-center">
<li>
<a href="index.html">
<span>Home</span>
</a>
</li>
<li>
<a href="services.html">
<span>Services</span>
</a>
</li>
<li>
<a href="aboutus.html">
<span>About</span>
</a>
</li>
<li>
<a href="contact.html">
<span>Contact Us</span>
</a>
</li>
</ul>
</nav>
</header>
<main>
<h1>Contact Us</h1>
<form method="Post" action="https://docs.google.com/forms/u/0/d/e/1FAIpQLSfpWVQe263d1Ky8c1wwTeV6monBc9ZQcbnhEINwU7gbdpYrGQ/formResponse">
<label for="name">Name</label>
<input type="text" id="name" name="entry.1129013885" placeholder="Your name..">
<label for="email">Email</label>
<input type="email" id="email" name="entry.1103761573" placeholder="Your email..">
<label for="subject">Subject</label>
<textarea id="subject" name="entry.1977479800" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</main>
<footer>
<div class="container2">
<div class="row">
<div class="col-md-4">
<h4>About Us</h4>
<p>We are a company that specializes in...</p>
</div>
<div class="col-md-4">
<h4>Contact Us</h4>
<p>123 Main Street</p>
<p>Chandigarh, 160012</p>
<p>Phone: (123) 456-7890</p>
<p>Email: info@company.com</p>
</div>
<div class="col-md-4">
<h4>Follow Us</h4>
<ul class="social-icons">
<li>
<a href="#"><img src="images/insta.png" alt="" srcset=""></a>
</li>
<li>
<a href="#"><img src="images/face.png" alt="" srcset=""></a>
</li>
<li>
<a href="#"><img src="images/utube.png" alt="" srcset=""></a>
</li>
</li>
</ul>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>