-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 2.06 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MEDIFINE</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- 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"
/>
</head>
<body>
<!-- home page -->
<nav>
<img src="./images/logo.png" alt="logo">
<ul>
<li><a href="/">Home</a></li>
<li><a href="about/about.html">About Us</a></li>
<li><a href="contact/contact.html">Contact Us</a></li>
</ul>
</nav>
<!-- hero-section -->
<main>
<!-- left hero section -->
<section class="left-hero-section">
<img src="./images/topAngle.png" alt="topAngle" class="top-angle">
<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 us 24/7. We focused on highest quality.</p>
<img src=".//images/bottomAngle.png" alt="bottomAngle" class="bottom-angle">
<img src="./images/stethoscope.png" alt="stethoscope" class="stethoscope">
<button>Make Appointment</button>
<img src="./images/mouse.png" alt="mouse" class="mouse">
</section>
<!-- right hero section -->
<section class="right-hero-section">
<img src="./images/greenBox.png" alt="greenBox" class="greenbox">
<img src="./images/yellowBox.png" alt="yellowBox" class="yellowbox">
<img src="./images/doctor.png" alt="doctor" class="doctor">
</section>
</main>
</body>
</html>