-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
82 lines (75 loc) · 3.31 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../TravelCss/style.css ">
<script src="https://kit.fontawesome.com/617bc0ea79.js" crossorigin="anonymous"></script>
<title>Travel Agency | Contact page</title>
</head>
<body>
<nav class="navbar bg-dark ">
<div class="container">
<h1 class="logo lg-heading text-lite">WT</h1>
<ul class="nav-items">
<li class="nav-item"><a href="./index.html">HOME</a></li>
<li class="nav-item"><a href="./About.html">ABOUT</a></li>
<li class="nav-item"><a href="./Contact.html">CONTACT</a></li>
</ul>
</nav>
<section class="contact ">
<div class="container">
<div class="form-wrapper">
<div class="company-address">
<div class="address-group ">
<i class="fas fa-map-marker-alt fa-3x text-blue"></i>
<h2 class="text-grey md-heading">Location</h2>
<p>#2661 Greater Noida,Gaur city</p>
</div>
<div class="address-group">
<i class="far fa-envelope fa-3x text-blue"></i>
<h2 class="text-grey md-heading">Email</h2>
<p>[email protected]</p>
</div>
<div class="address-group">
<i class="fas fa-phone-square-alt fa-3x text-blue"></i>
<h2 class="text-grey md-heading">Call</h2>
<p>+91 8490249240</p>
</div>
<img src="./img/abbe-sublett-nxZDMUQhN4o-unsplash.jpg" alt="company">
</div>
<form class="form">
<h1 class="lg-heading text-black">Contact Us</h1>
<p>Let us know your questions,suggestions and concerns by filling out the contact form below.</p>
<div class="form-group">
<label for="username">Username</label>
<input type="text" name="" id="username" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="" id="email" required>
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="text" name="" id="phone" required>
</div>
<div class="form-group">
<label for="msg">Message</label>
<textarea name="" id="msg"></textarea>
</div>
<button type="submit" class="form-btn">Submit</button>
</form>
</div>
</div>
</section>
</div>
<footer class="footer">
<div class="social-media-links">
<i class="fab fa-facebook fa-4x"></i>
<i class="fab fa-twitter fa-4x"></i>
<i class="fab fa-instagram fa-4x"></i>
</div>
<p>World Travel © 2024,All Rights Reserved </p>
</footer>
</body>
</html>