-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHospital_Aboutpage.html
58 lines (52 loc) · 2 KB
/
Hospital_Aboutpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./Hospital_Aboutpage.css">
<!-- adding the google font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200;300;400;500;600;700&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"/>
<title>Hospital_aboutpage</title>
</head>
<body>
<!-- navigation row -->
<nav class="navigation">
<a href="http://127.0.0.1:5500/Hospital_Aboutpage.html" target="_blank"><img src="./Assets/logo.png" alt="Error"></a>
<ul class="naviagtion_lists">
<li> <a href="http://127.0.0.1:5500/Hospital_Homepage.html">Home</a> </li>
<li> <a href="http://127.0.0.1:5500/Hospital_Aboutpage.html" target="_blank">About Us</a></li>
<li> <a href="http://127.0.0.1:5500/Hospital_ContactUspage.html" target="_blank">Contact Us</a></li>
</ul>
</nav>
<main>
<div class="main_heading">
<h1>Best Facilites and Experienced Doctor</h1>
<p>
We had bring the best experts of medical field to provide you the best
service as <br> possible. We are trying our best to serve the world with
our facilities, so that <br> everyone can have a proper medical facility to
avail.
</p>
</div>
<!-- adding the achievement cards -->
<div class="achievement">
<div class="achievementCard">
<h2>20+</h2>
<p>Doctors</p>
</div>
<div class="achievementCard">
<h2>50,000+</h2>
<p>Customers</p>
</div>
<div class="achievementCard">
<h2>500+</h2>
<p>Students</p>
</div>
</div>
</main>
</body>
</html>