-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>medicare</title>
<link rel="stylesheet" href="css/style.css" />
<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=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<div class="main-header">
<div class="logo">
<img src="images/logo.png" alt="" />
</div>
<nav>
<a href="">Home</a>
<a href="">Services</a>
<a href="">About</a>
<a href="">Contact</a>
</nav>
<div class="menu-btn">
<button>Helpline</button>
</div>
</div>
<main>
<section class="left-section">
<h2>We Are Here For Your Care</h2>
<h1>We Are The Best Doctors</h1>
<p>We are here for your care 24/7. Any help just call us.</p>
<button>Make An Appointment</button>
</section>
<section class="right-section">
<figure>
<img src="images/image.png" alt="">
</figure>
</section>
</main>
</header>
</body>
</html>