forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
98 lines (96 loc) · 3.66 KB
/
about.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
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Us - BuddyTrail</title>
<link rel="stylesheet" href="about.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">
<img src="img/logo.png" id="logo-web" alt="BuddyTrail Logo" />
<h1 id="logo">BuddyTrail</h1>
</div>
<ul class="nav-links">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="about.html" class="nav-link active">About Us</a></li>
<li><a href="team.html" class="nav-link">Team</a></li>
<li><a href="contact.html" class="nav-link">Contact</a></li>
<li><a href="auth.html" class="btn-primary">Sign In</a></li>
</ul>
</nav>
</div>
</header>
<main class="main-content">
<div class="content-container">
<h1>About Our Website</h1>
<p>
Welcome to BuddyTrail – your ultimate travel companion! 🌍✈️ Whether
you're planning a family vacation or a trip with friends, BuddyTrail
helps you discover amazing destinations, find the best hotels, and
book affordable flights with ease.
</p>
<p>
Our mission is to provide the best travel experiences for our
customers, ensuring that every trip is memorable and hassle-free.
</p>
<p>
At BuddyTrail, we believe in the power of travel to transform lives.
Our team is dedicated to curating unique experiences, personalized
recommendations, and valuable resources that empower our users to
explore the world confidently.
</p>
<h2>Our Values</h2>
<p>
We value integrity, innovation, and community. Our goal is to build a
platform that fosters trust and connectivity among travelers, allowing
them to share their experiences and insights.
</p>
<h2>Meet Our Team</h2>
<p>
Our diverse team of travel enthusiasts and experts is passionate about
creating the best possible service for you. Together, we work
tirelessly to ensure your travel journey is seamless from start to
finish.
</p>
<a href="index.html" class="btn-primary">Back to Home</a>
</div>
</main>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-column-l">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: +123 456 7890</p>
</div>
<div class="footer-column-r">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="https://discord.com/invite/priyaghosal" target="_blank"
><i class="fab fa-discord"></i
></a>
<a href="https://twitter.com/PriyaGhosa39968" target="_blank"
><i class="fab fa-twitter"></i
></a>
<a href="https://github.com/PriyaGhosal/BuddyTrail" target="_blank"
><i class="fab fa-github"></i
></a>
<a href="https://www.linkedin.com/in/priya-ghosal-785771286/" target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
</div>
<p class="copyright">© 2024 BuddyTrail | All rights reserved.</p>
</div>
</footer>
</body>
</html>