forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
64 lines (59 loc) · 2.11 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
<!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>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
background-color: #f9f9f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 800px;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #f39c12;
margin-bottom: 20px;
}
p {
margin-bottom: 15px;
color: #555;
}
/* Styles for the Back to Home link */
.back-home {
display: inline-block; /* Make it behave like a block for padding */
padding: 10px 20px; /* Add padding */
margin-top: 20px; /* Space above the button */
background-color: #007BFF; /* Button color */
color: white; /* Text color */
text-decoration: none; /* Remove underline */
border-radius: 5px; /* Rounded corners */
transition: background-color 0.3s; /* Smooth transition */
}
/* Hover effect */
.back-home:hover {
background-color: #0056b3; /* Darker shade on hover */
}
</style>
</head>
<body>
<div class="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 and explore 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.</p>
<a href="index.html" class="back-home">Back to Home</a>
</div>
</body>
</html>