-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
74 lines (63 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Routify</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 15px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
margin: 0 10px;
}
nav a:hover {
background-color: #555;
}
section {
padding: 40px; /* Increased padding for the section */
text-align: center; /* Center the text within the section */
}
section p {
max-width: 50%; /* Set the maximum width to 50% of the viewport */
margin: 0 auto; /* Center the paragraph horizontally */
padding: 0 20px; /* Adjust left and right padding for the paragraph */
}
iframe {
width: 100%;
height: 100vh; /* 100% of the viewport height */
border: none; /* Remove default border */
}
</style>
</head>
<body>
<header>
<h1>Routify</h1>
</header>
<nav>
<a href="index.html">Dashboard</a>
<a href="map.html">Map</a>
<a href="about.html">About</a>
</nav>
<section>
<p>Routify is a user-friendly web application focused on assisting users in locating the closest hospitals effortlessly. With real-time mapping, users can visualize hospital locations and plan optimal routes for emergencies. Key features include a streamlined dashboard for easy accessibility and a routing service. The application aims to provide a seamless experience, ensuring users can quickly access essential information about nearby healthcare facilities. For questions or feedback, users can contact our team at [email protected]. Routify is designed to be a reliable companion in navigating healthcare resources during critical situations.</p>
</section>
</body>
</html>