forked from vimistify/AmbuFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.html
190 lines (185 loc) · 6.28 KB
/
features.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features</title>
<link rel="stylesheet" href="src/css/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
.logo span {
font-size: 28px;
font-weight: bold;
background: linear-gradient(45deg, #ff5733, #33ff57, #3357ff);
-webkit-background-clip: text;
color: transparent;
letter-spacing: 2px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
font-family: 'Arial', sans-serif;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
color: #333;
display: flex;
flex-direction: column;
min-height: 100vh; /* Ensure the body takes at least the full height of the viewport */
}
.menu ul {
list-style-type: none;
padding: 0;
}
.menu ul li {
display: inline;
margin-right: 10px; /* Space between menu items */
}
.menu ul li a {
padding: 10px 15px;
color: black;
text-decoration: none;
transition: background-color 0.3s, color 0.3s;
}
.menu ul li a:hover {
background-color: #000;
color: white;
}
.menu ul li a.active {
color: white;
background-color: #000;
}
.content {
margin: 20px;
padding: 20px;
background-color: #e6eef3;
border-radius: 5px;
flex-grow: 1; /* Allows content area to expand */
}
h1 {
color: #2c3e50;
text-align: center;
margin-bottom: 20px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
animation: fadeIn 1s ease-in-out; /* Animation for the grid */
}
.feature-card {
background: #abd4fc;
padding: 15px;
border-radius: 5px;
text-align: center;
transition: transform 0.3s;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-icon {
font-size: 40px;
color: #0560c2; /* Bootstrap primary color */
margin-bottom: 10px;
}
footer {
background-color: #000;
color: white;
text-align: center;
padding: 10px 0; /* Padding for the footer */
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<span>Ambulance Monitoring System</span>
</div>
<nav class="menu">
<ul>
<li><a href="home.html" id="home-link">Home</a></li>
<li><a href="features.html" id="features-link" class="active">Features</a></li>
<li><a href="team.html" id="team-link">Team</a></li>
<li><a href="contact.html" id="contact-link">Contact</a></li>
</ul>
</nav>
<div class="buttons">
<a href="login.html" class="login">Log in</a>
<a href="up.html" class="get-started">Get started</a>
</div>
</div>
</header>
<div class="content" id="main-content">
<h1>Features</h1>
<p>Here are the features of the Ambulance Monitoring System:</p>
<div class="features-grid">
<div class="feature-card">
<i class="fas fa-ambulance feature-icon"></i>
<h2>Quick Emergency Response</h2>
<p>Immediate notifications to the nearest ambulance service.</p>
</div>
<div class="feature-card">
<i class="fas fa-map-marked-alt feature-icon"></i>
<h2>Real-Time Tracking</h2>
<p>Track ambulances in real-time for better coordination.</p>
</div>
<div class="feature-card">
<i class="fas fa-comments feature-icon"></i>
<h2>Enhanced Communication</h2>
<p>Instant communication between dispatch and ambulances.</p>
</div>
<div class="feature-card">
<i class="fas fa-cogs feature-icon"></i>
<h2>Resource Management</h2>
<p>Efficient allocation of resources for emergencies.</p>
</div>
<div class="feature-card">
<i class="fas fa-user-friends feature-icon"></i>
<h2>User-Friendly Interface</h2>
<p>Easy-to-navigate system for users and providers.</p>
</div>
<div class="feature-card">
<i class="fas fa-clock feature-icon"></i>
<h2>24/7 Availability</h2>
<p>Always available support and monitoring services.</p>
</div>
<div class="feature-card">
<i class="fas fa-heartbeat feature-icon"></i>
<h2>Patient Health Monitoring</h2>
<p>Real-time monitoring of patient vitals during transport.</p>
</div>
<div class="feature-card">
<i class="fas fa-lock feature-icon"></i>
<h2>Data Security</h2>
<p>Ensuring the security of patient and operational data.</p>
</div>
<div class="feature-card">
<i class="fas fa-phone-alt feature-icon"></i>
<h2>Emergency Contact Integration</h2>
<p>Seamless integration with emergency contact services.</p>
</div>
<div class="feature-card">
<i class="fas fa-comments-dollar feature-icon"></i>
<h2>Feedback System</h2>
<p>Collecting feedback to improve service quality.</p>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<p>© 2024 Ambulance Monitoring System. All rights reserved.</p>
</footer>
</body>
</html>