-
Notifications
You must be signed in to change notification settings - Fork 285
/
sitemap.html
153 lines (151 loc) · 4.23 KB
/
sitemap.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" href="ambulance.png" type="image/x-icon" />
<title>Site Map - AmbuFlow</title>
<link rel="stylesheet" href="src/css/index.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
<style>
body {
font-family: "Roboto", sans-serif;
background-color: #262b30;
color: #d1d1d1;
margin: 0;
padding: 0;
overflow-x: hidden;
display: flex;
flex-direction: column;
min-height: 100vh; /* Full viewport height */
margin: 0;
padding: 0;
}
header {
background-color: #0d47a1;
padding: 20px;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-title {
display: flex;
align-items: center;
justify-content: center;
flex-grow: 1;
}
.logo-title img {
width: 50px;
margin-right: 15px;
}
.logo-title h1 {
color: #fff;
font-size: 2.4rem;
letter-spacing: 2px;
}
main {
display: flex;
max-width: 1200px;
margin: 50px auto;
background-color: #10141b;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
overflow: hidden;
flex: 1;
width: 100%; /* Ensure main content uses full width */
}
.content {
padding: 50px;
flex: 1;
background-color: transparent; /* Make it transparent or set another color */
}
.content ul {
list-style: none;
padding: 0;
}
.content ul li {
margin-bottom: 20px;
font-size: 1.2rem;
}
.content ul li a {
color: #d1d1d1;
font-weight: bold;
text-decoration: none;
}
.content ul li a:hover {
color: #1e88e5;
}
.map-header iframe {
width: 100%;
height: 100%;
border: 0;
}
.map-header {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
background-color: #0b0e11;
}
main {
height: auto;
}
footer {
background-color: #0d47a1;
color: white;
text-align: center;
padding: 20px 0;
width: 100%;
}
.map-header {
height: auto; /* Allow dynamic sizing */
}
.content,
.map-header {
flex: 1 1 auto; /* Ensure equal height with flexibility */
}
</style>
</head>
<body>
<header>
<div class="logo-title">
<img src="images/logo2-w.webp" alt="Ambulance Monitoring System Logo" />
<h1>AmbuFlow</h1>
</div>
</header>
<main>
<div class="content">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="Feedback.html">Feedback</a></li>
<li><a href="sitemap.html">Sitemap</a></li>
<li><a href="login.html">Log In</a></li>
<li><a href="up.html">Get Started</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms of Service</a></li>
</ul>
</div>
<div class="map-header">
<iframe
src="https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d241294.64898498365!2d72.79635424219836!3d19.09761203283721!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1s123%20Emergency%20Lane%2C%20Mumbai%2C%20India!5e0!3m2!1sen!2sin!4v1728732339444!5m2!1sen!2sin"
allowfullscreen=""
referrerpolicy="no-referrer-when-downgrade"
loading="lazy"
></iframe>
</div>
</main>
<footer>
<p>© 2024 AmbuFlow - All Rights Reserved</p>
</footer>
</body>
</html>