-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
55 lines (54 loc) · 2.06 KB
/
home.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<!-- Css Home page link -->
<link rel="stylesheet" href="./home.css">
<!-- Css about page link -->
<link rel="stylesheet" href="./about.css">
<!-- Css contact page link -->
<link rel="stylesheet" href="./contact.css">
<!-- favicon -->
<link rel="shortcut icon" href="./Assets/doctor.png" type="image/x-icon">
</head>
<body>
<!-- nav bar -->
<header class="head">
<div class="hright">
<img src="./Assets/logo.png" alt="logo">
</div>
<div class="hleft">
<a href="./home.html" class="home">Home</a>
<a href="./about.html" class="about">About</a>
<a href="./contact.html" class="contact">contact Us</a>
</div>
</header>
<!-- main section -->
<main>
<!-- right side section -->
<section class="sright">
<img src="./Assets/greenBox.png" alt="green" class="greencir">
<img src="./Assets/yellowBox.png" alt="yellow" class="yellowcir">
<img src="./Assets/doctor.png" alt="doctor" class="doctor">
</section>
<!-- left side section -->
<section class="sleft">
<img src="./Assets/stethoscope.png" alt="stethoscope" class="stetho">
<img src="./Assets/topAngle.png" alt="topAngle" class="topAngle">
<div class="sdiv">Complete Health <br> Care Solutions for <br> Everyone
</div>
<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>
<button>
Make Appointment
</button>
<img src="./Assets/bottomAngle.png" alt="bottomAngle" class="bottomAngle">
<img src="./Assets/mouse.png" alt="mouse" class="mouse">
</section>
</main>
</body>
</html>