-
Notifications
You must be signed in to change notification settings - Fork 7
/
contact.html
95 lines (79 loc) · 3.88 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
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>Contact Us</title>
<link rel="icon" href="./assets/files/logo.png">
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Paytone+One&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
</head>
<body class="contactbody">
<nav>
<img src="./assets/files/logo.png" class="logo" alt="Logo" title="FirstFlight Travels">
<ul class="navbar">
<li>
<a href="./index.html">Home</a>
<a href="./index.html#package">Packages</a>
<a href="./index.html#locations">Locations</a>
<a href="./info.html">About Us</a>
<a href="./contact.html">Contact Us</a>
</li>
</ul>
</nav>
<section class="contact">
<h1>Contact <span>Us</span></h1>
<hr>
<p>We value your feedback, inquiries, and suggestions, and we're excited to hear from you. Whether you have
a question about our products or services, need assistance with an order, or simply want to share your
thoughts, this is the place to reach out to us..</p>
<div class="contact-form">
<form action="">
<input type="text" name="myname" placeholder="Enter Name" required>
<input type="email" name="email" placeholder="Enter E-mail" required>
<input type="text" name="phone" placeholder="Enter Phone number" required>
<input type="text" name="subject" placeholder="What brings you here?" required>
<textarea name="message" cols="30" rows="10" placeholder="Your Message" required></textarea>
<input type="submit" value="Submit" ONCLICK="alert('Thank you! \nYour response was submitted')" class="submit-btn">
</form>
</div>
</section>
<!-- Footer -->
<section class="footer">
<div class="foot">
<div class="footer-content">
<div class="footlinks">
<h4>Quick Links</h4>
<ul>
<li><a href="./booking.html">Register</a></li>
<li><a href="./info.html">About Us</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</div>
<div class="footlinks">
<h4>Connect</h4>
<div class="social">
<a href="https://www.facebook.com/profile.php?id=100007787415175" target="_blank"><i
class='bx bxl-facebook'></i></a>
<a href="https://www.instagram.com/iamit010/" target="_blank"><i
class='bx bxl-instagram'></i></a>
<a href="https://twitter.com/sarcasmit_" target="_blank"><i class='bx bxl-twitter'></i></a>
<a href="https://www.linkedin.com/in/amit-kumar-singh-475b36212/" target="_blank"><i
class='bx bxl-linkedin'></i></a>
<a href="https://github.com/iamit010" target="_blank"><i class='bx bxl-github'></i></a>
</div>
</div>
</div>
</div>
<div class="end">
<p>Copyright © 2023 Adventour All Rights Reserved.<br>Website developed by: Amit Kumar Singh</p>
</div>
</section>
</body>
</html>