-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
127 lines (115 loc) · 4.58 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="style.css">
<style>
body {
background-color: #161813;
color: white;
font-family: 'Poppins', sans-serif;
line-height: 1.8;
}
.about-container {
max-width: 1200px;
margin: 0 auto;
padding: 100px 50px; /* Similar padding as testimonials */
text-align: center;
}
h2 {
font-size: 36px;
font-weight: 600;
color: #fff;
margin-bottom: 40px;
}
p {
font-size: 18px;
color: #e6e6e6;
margin-bottom: 30px;
line-height: 1.7;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
text-align: left;
}
.about-image {
width: 100%;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.about-text {
font-size: 18px;
color: #f2f2f2;
}
.mission-section {
background-color: #262626;
padding: 80px 50px;
border-radius: 12px;
margin-top: 50px;
}
.mission-text {
font-size: 18px;
color: #b3b3b3;
}
.mission-highlight {
color: #ff6700;
font-weight: 600;
}
</style>
</head>
<body>
<!-- Navbar -->
<header>
<nav class="navbar">
<ul class="links-container">
<li class="link-item"><a href="index.html">Travels</a></li>
<li class="link-item">
<a href="#hero-section">
<img src="img/logo.png" class="logo" alt="logo">
</a>
</li>
<li class="link-item"><a href="itinerary.html">Itinerary Planner</a></li>
<li class="link-item"><a href="testimonials.html">Testimonials</a></li>
<li class="link-item"><a href="about.html">About Us</a></li>
</ul>
</nav>
</header>
<!-- About Us Content -->
<div class="about-container">
<h2>About WanderWise</h2>
<div class="about-grid">
<img src="https://media-cdn.tripadvisor.com/media/photo-s/0d/00/c7/64/himalayan-hikers-expedition.jpg" alt="About WanderWise" class="about-image">
<div class="about-text">
<p>
Welcome to <strong>WanderWise</strong>, your go-to travel companion for exploring the beauty and diversity of India.
We are passionate about making travel planning seamless and personalized.
Whether you're looking for a relaxing retreat in the hills or a thrilling adventure in the heart of the city, we've got you covered.
</p>
<p>
Our mission is to provide travelers with detailed itineraries and local insights to make their trips truly memorable.
At WanderWise, we believe in making every journey as exciting and hassle-free as possible.
</p>
<p>
With our intuitive itinerary planner and comprehensive guides, you can explore the best of India without the stress of planning.
Trust us to guide you through a journey filled with rich cultural experiences and breathtaking landscapes.
</p>
</div>
</div>
</div>
<!-- Mission Section -->
<div class="mission-section">
<h2>Our Mission</h2>
<p class="mission-text">
At <strong>WanderWise</strong>, our mission is to help every traveler experience the wonders of India in a way that’s tailored to their preferences.
We believe in the power of travel to transform lives, and we aim to make travel <span class="mission-highlight">accessible</span>, <span class="mission-highlight">inclusive</span>, and <span class="mission-highlight">sustainable</span> for everyone.
</p>
<p class="mission-text">
Whether you're traveling solo or with friends and family, we ensure that you have all the tools and recommendations you need to make the most of your journey.
</p>
</div>
</body>
</html>