-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHospital_Homepage.html
More file actions
61 lines (48 loc) · 2.39 KB
/
Hospital_Homepage.html
File metadata and controls
61 lines (48 loc) · 2.39 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 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"
/>
<link rel="stylesheet" href="./Home_page.css">
<title>Hospital_project</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>
<!-- body main content -->
<main class="main_section">
<!-- Left section of main content -->
<section class="left_section">
<img class="topangle" src="./Assets/topAngle.png" alt="error">
<h1>Complete Health <br>Care Solutions for <br> Everyone</h1>
<p>We're always available for our Patients with emergen problems. You can easily reach <br>us 24/7. We focused on highest quality.</p>
<img class="bottomAngle" src="./Assets/bottomAngle.png" alt="error">
<img class="stethoscope" src="./Assets/stethoscope.png" alt="error">
<br><br>
<a href="http://127.0.0.1:5500/Hospital_ContactUspage.html"><button type="button">Make Appointment</button>
</a>
<img class="mouse" src="./Assets/mouse.png" alt="">
</section>
<!-- Right section of the main content -->
<section class="right_section">
<img class="greenboxpng" src="./Assets/greenBox.png" alt="green_circle">
<img class="yellowBoxpng" src="./Assets/yellowBox.png" alt="yellow_circle">
<img class="doctor" src="./Assets/doctor.png" alt="">
</section>
</main>
</body>
</html>