-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
65 lines (65 loc) · 3.13 KB
/
about.html
File metadata and controls
65 lines (65 loc) · 3.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | Infinite Trails Travel</title>
<link rel="stylesheet" href="about.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="aboutbody">
<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 class="active" href="about.html"><i class="fa fa-info-circle"></i> About Us</a>
<a 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">About Us</h1>
<p class="desc">
"Infinite Trails Travel is your gateway to seamless travel planning."
</p>
</td>
</tr>
</table>
<div class="content">
<h2>Who We Are</h2>
<p>
At Infinite Trails Travel, we strive to make your dream vacations a reality. Whether you're browsing pre-designed packages or creating a custom itinerary, we simplify the entire planning process. Let us help you explore the world your way.
</p>
<h2>Our Mission</h2>
<p>
Our mission is to inspire travelers to embrace the joy of exploration by delivering unforgettable experiences with ease, efficiency, and expertise.
</p>
<h2>Our Values</h2>
<ul>
<li><strong>Customer-Centric:</strong> We prioritize your needs and preferences.</li>
<li><strong>Innovation:</strong> Leveraging technology to redefine travel.</li>
<li><strong>Integrity:</strong> Building trust through transparent processes.</li>
</ul>
</div>
<div class="certifications">
<h2>Certifications and Affiliations</h2>
<div class="cert-container">
<div class="cert-card">
<p class="cert-desc"><strong>ISO 9001 Certified:</strong> Recognized for our commitment to quality and customer satisfaction.</p>
</div>
<div class="cert-card">
<p class="cert-desc"><strong>IATA Member:</strong> Partnered with the International Air Transport Association for secure travel solutions.</p>
</div>
<div class="cert-card">
<p class="cert-desc"><strong>Affiliate Partner:</strong> Trusted collaborator with leading global travel organizations.</p>
</div>
<div class="cert-card">
<p class="cert-desc"><strong>Award-Winning Agency:</strong> Recognized for excellence in customer service and innovation in travel.</p>
</div>
</div>
</div>
<hr class="btm">
<p class="cinfo"><i class="fa fa-copyright"></i> Infinite Trails Travel - 2024</p>
</body>
</html>