-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
62 lines (58 loc) · 2.83 KB
/
contact.html
File metadata and controls
62 lines (58 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us | Infinite Trails Travel</title>
<link rel="stylesheet" href="contact.css">
<link rel="icon" href="images/logo.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body id="contactbody">
<div class="topnav">
<a href="index.html"><i class="fa fa-home"></i> Home</a>
<a href="login.html" target="_blank"><i class="fa fa-user"></i> Login | SignUp</a>
<a href="about.html"><i class="fa fa-info-circle"></i> About Us</a>
<a class="active" href="contact.html"><i class="fa fa-address-book-o"></i> Contact Us</a>
</div>
<table>
<tr>
<td><img src="images/logo.png" class="logo"></td>
<td>
<h1 id="title">Contact Us</h1>
<p class="desc">
"We are here to help you plan your dream vacations."
</p>
</td>
</tr>
</table>
<div class="contact-section">
<div class="form-container">
<h2>Get in Touch</h2>
<form action="submit_form.php" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Your Name" required class="inp">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Your Email" required class="inp">
<label for="phone">Phone:</label>
<input type="text" id="phone" name="phone" placeholder="Your Phone Number" class="inp">
<label for="message">Message:</label>
<textarea id="message" name="message" placeholder="Write your message here..." rows="6" required class="inp"></textarea>
<button type="submit" class="btn-submit">Submit</button>
</form>
</div>
<div class="info-container">
<h2>Contact Information</h2>
<p><i class="fa fa-map-marker"></i> Infinite Trails Travel, Main Street, Ghaziabad, Uttar Pradesh, India</p>
<p><i class="fa fa-phone"></i> +91 1234 5679 90</p>
<p><i class="fa fa-envelope"></i> info@infinitetrails.com</p>
<h2>Follow Us</h2>
<a href="#" class="social-icon"><i class="fa fa-facebook"></i></a>
<a href="#" class="social-icon"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-icon"><i class="fa fa-instagram"></i></a>
</div>
</div>
<hr class="btm">
<p class="cinfo"><i class="fa fa-copyright"></i> Infinite Trails Travel - 2024</p>
</body>
</html>