-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
177 lines (152 loc) · 6.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Catamaran:wght@200&family=Courgette&family=Dancing+Script:wght@700&family=Edu+TAS+Beginner:wght@700&family=Lato:wght@300;900&family=Mukta:wght@700&family=Mulish:wght@300&family=Open+Sans&family=PT+Sans:ital,wght@1,700&family=Poppins:wght@300&family=Raleway:wght@100&family=Roboto&family=Roboto+Condensed:wght@700&family=Roboto+Slab&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/f30fac2c61.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<nav>
<div class="logo">
<h1>Max Life Care</h1>
</div>
<ul>
<li><a href="">Home</a></li>
<li><a href="#service">Service's</a></li>
<li><a href="#doctors">Doctor's</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#appointment">Apointment</a></li>
</ul>
<i id="bar" class="fa-solid fa-bars"></i>
</nav>
<div class="main">
<img src="main.png" alt="">
<div class="mainText">
<h1>Care With Best Centrall Care</h1>
<p>Our team of experts provides top-notch medical treatment with empathy using the most advanced technology.</p>
<button>Learn More</button>
</div>
</div>
<div id="service">
<div class="head">
<h1>Our Services</h1>
<div class="serviceCard">
<div class="card">
<img src="chest.webp" alt="">
<p>Chest and Respiratory</p>
</div>
<div class="card">
<img src="laboratory.webp" alt="">
<p>Laboratory and Science</p>
</div>
<div class="card">
<img src="physio.webp" alt="">
<p>Physiotherapy</p>
</div>
<div class="card">
<img src="nutrition.webp" alt="">
<p>Nutrition Detection</p>
</div>
</div>
</div>
</div>
<div id="doctors">
<div class="head">
<h1>Our Doctor's</h1>
</div>
<div class="doctor">
<div class="team">
<img src="d1.jpg" alt="">
<img src="d2.jpg" alt="">
<img src="d3.jpg" alt="">
</div>
<div class="team">
<img src="d4.jpg" alt="">
<img src="d5.jpg" alt="">
<img src="d6.jpg" alt="">
</div>
<div class="team">
<img src="d7.jpg" alt="">
<img src="d9.jpg" alt="">
<img src="d2.jpg" alt="">
</div>
<div class="team">
<img src="d4.jpg" alt="">
<img src="d5.jpg" alt="">
<img src="d6.jpg" alt="">
</div>
</div>
</div>
<div id="blog">
<div class="head">
<h1>Read Blogs</h1>
</div>
<div class="blogs">
<div class="blogCard">
<img src="bl1.jfif" alt="">
<p>Health Care</p>
<a href="https://www.maxhealthcare.in/blogs">Read More</a>
</div>
<div class="blogCard">
<img src="bl2.jpg" alt="">
<p>Health Care</p>
<a href="https://www.maxhealthcare.in/blogs">Read More</a>
</div>
<div class="blogCard">
<img src="bl3.webp" alt="">
<p>Health Care</p>
<a href="https://www.maxhealthcare.in/blogs">Read More</a>
</div>
</div>
</div>
<div id="appointment">
<div class="head">
<h1>Book An Appointment</h1>
</div>
<div class="form">
<input type="text" placeholder="Name">
<input type="text" placeholder="Number">
<input type="date" >
<input type="time">
<button>Make Appointment</button>
</div>
</div>
<div class="footer">
<div class="text">
<h2>About</h2>
<p>Max life is one of the largest multi-super-specialty hospitals <br>
The hospital aims to provide the highest standard <br>
of tertiary healthcare to the entire state and complies <br>
with international quality standards.
The hospital is led by teams of highly skilled super-specialist doctors. <br></p>
</div>
<div class="text">
<h2>Care</h2>
<p>Facility</p>
<p>Reviews</p>
<p>Support</p>
<p>Staff</p>
</div>
<div class="text">
<h2>Address</h2>
<p>JK Hills</p>
<p>Galaxy</p>
<p>234-999</p>
<p>maps</p>
</div>
<div class="text">
<h2>Connect Us</h2>
<p>YouTube</p>
<p>LinkedIN</p>
<p>Facebook</p>
<p>Instagram</p>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>