-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
91 lines (77 loc) · 2.09 KB
/
about.html
File metadata and controls
91 lines (77 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Our App</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background: url('https://i.pinimg.com/736x/c6/76/a0/c676a0aa3faee6454c8746a0e2d66d0f.jpg') no-repeat center center/cover;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
max-width: 800px;
background: rgba(255, 255, 255, 0.9);
/* Semi-transparent white */
padding: 30px;
border-radius: 10px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
h1 {
color: #333;
}
p {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
}
.btn {
background: #6e6038;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 1rem;
border-radius: 5px;
text-decoration: none;
display: inline-block;
margin-top: 20px;
}
.btn:hover {
background: #9f8f51;
}
ul {
text-align: left;
display: inline-block;
}
</style>
</head>
<body>
<div class="container">
<h1>About Our App</h1>
<p>Welcome to <strong>WanderHub</strong>, the ultimate solution designed to make your life
easier!</p>
<p>Our app helps you discover landmarks, explore history, and navigate locations effortlessly. Whether you're a
traveler, a history enthusiast, or just curious about new places, our app provides all the details you need.
</p>
<h2>🌟 Key Features:</h2>
<ul>
<li>📍 Find famous landmarks near you</li>
<li>📜 Learn historical facts and details</li>
<li>🗺 Get interactive maps and directions</li>
<li>⭐ Save your favorite locations</li>
<li>🔔 Get real-time updates and notifications</li>
</ul>
<p>We are constantly working to improve our app and bring you the best experience possible. Thank you for
choosing us!</p>
<a href="home2.html" class="btn">Back to Home</a>
</div>
</body>
</html>