-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
33 lines (31 loc) · 1.34 KB
/
Copy pathabout.html
File metadata and controls
33 lines (31 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rapid Admit - About Us</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Rapid Admit</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="find-hospitals.html">Find Nearby Hospitals</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="about">
<h2>About Rapid Admit</h2>
<p>Rapid Admit is a cutting-edge platform designed to help you find the best healthcare facilities near you, fast. Whether you’re looking for hospital bed availability, directions to the nearest hospital, or details on healthcare services, Rapid Admit has got you covered.</p>
<p>Our mission is to simplify healthcare access by providing accurate and timely information, ensuring that you and your loved ones get the care you need when you need it the most.</p>
<img src="public/images/about-image.jpg" alt="About Us" class="about-image">
</section>
<footer>
<p>© 2024 Rapid Admit. All rights reserved.</p>
</footer>
</body>
</html>