-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
163 lines (143 loc) · 4.8 KB
/
Copy pathabout.html
File metadata and controls
163 lines (143 loc) · 4.8 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!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>About Us</title>
<link rel="icon" href="./files/newlogo.png">
<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">
<style>
/* General body styling */
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Navbar styling */
nav {
background-color: #004d40;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
}
nav .logo {
height: 50px;
}
nav ul {
list-style-type: none;
display: flex;
margin: 0;
padding: 0;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: white;
font-size: 16px;
font-weight: 500;
}
nav ul li a:hover {
text-decoration: underline;
}
/* About section styling */
.about {
text-align: center;
padding: 40px 20px;
}
.about h1 {
font-size: 2.5em;
color: #004d40;
margin-bottom: 20px;
}
.about h1 span {
color: #ff4081;
}
.about img {
height: 150px;
margin-bottom: 20px;
}
.about p {
font-size: 1.2em;
color: #333;
line-height: 1.8;
margin: 0 auto;
max-width: 800px;
}
/* Footer styling */
.footer {
background-color: #004d40;
color: white;
text-align: center;
padding: 20px 10px;
}
.footer .footlinks h4 {
margin-bottom: 10px;
}
.footer .footlinks ul {
list-style-type: none;
padding: 0;
}
.footer .footlinks ul li {
margin: 5px 0;
}
.footer .footlinks ul li a {
text-decoration: none;
color: white;
}
.footer .footlinks ul li a:hover {
text-decoration: underline;
}
.footer .end {
margin-top: 20px;
font-size: 0.9em;
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav>
<img src="./files/newlogo.png" class="logo" alt="Logo" title="TravelSphere">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./index.html#location">Locations</a></li>
<li><a href="./index.html#package">Packages</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</nav>
<!-- About Us Section -->
<section class="about">
<h1>About <span>Us</span></h1>
<img src="./files/newlogo.png" alt="TravelSphere Logo">
<p>
TravelSphere is a dynamic and user-friendly travel website designed to make exploring the world effortless and exciting.
It serves as a one-stop destination for planning memorable trips, offering a wide range of services including curated travel packages, customizable itineraries, and real-time booking for flights, accommodations, and activities.
TravelSphere caters to all types of travelers—solo adventurers, families, and groups—by featuring diverse options that suit varying budgets and preferences.
The platform provides detailed destination guides, reviews, and travel tips to inspire and inform users.
With its sleek interface, secure payment options, and comprehensive features, TravelSphere makes travel planning a seamless and enjoyable experience.
</p>
</section>
<!-- Footer Section -->
<section class="footer">
<div class="footlinks">
<h4>Quick Links</h4>
<ul>
<li><a href="./register.html">Register</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</div>
<div class="end">
<p>Copyright © 2024 TravelSphere All Rights Reserved</p>
</div>
</section>
</body>
</html>