-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
545 lines (502 loc) · 30.2 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>healthcare-Site </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Fontawesome -->
<script src="https://kit.fontawesome.com/dbed6b6114.js" crossorigin="anonymous"></script>
<!-- Custom CSS -->
<link rel = "stylesheet" href = "main.css">
</head>
<body>
<!-- header -->
<header class = "header" id = "home">
<div class = "header-wrapper">
<!-- navbar -->
<div class = "navbar-wrapper">
<nav class = "navbar container">
<div class = "brand-and-toggler container">
<a href = "index.html" class = "navbar-brand">CureForU</a>
<button type = "button" class = "navbar-toggler" id = "navbar-toggler">
<span><i class = "fas fa-bars"></i> MENU</span>
</button>
</div>
<div class = "navbar-collapse">
<ul class = "navbar-nav container">
<li class = "nav-item">
<a href = "#home" class = "nav-link">Home</a>
</li>
<li class = "nav-item">
<a href = "#about" class = "nav-link">About</a>
</li>
<li class = "nav-item">
<a href = "#tour" class = "nav-link">Packages</a>
</li>
<li class = "nav-item">
<a href = "#blog" class = "nav-link">Blog</a>
</li>
<li class = "nav-item special-nav-btn">
<a href = "#contact" class = "nav-link">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
<div class = "banner">
<div class = "container">
<h1 class = "banner-title">
<span>Care</span> You Can Trust
</h1>
<p class = "banner-text">Find Near Your city</p>
<form class = "banner-form">
<div class = "form-element">
<select name = "place" class = "form-control">
<option value = "country">Country</option>
<option value = "USA"> USA</option>
<option value = "Canada">Canada</option>
<option value = "UK"> United Kingdom</option>
<option value = "India">India</option>
</select>
</div>
<div class = "form-element">
<select name = "place" class = "form-control">
<option value = "city">City</option>
<option value = "san-francisco">San francisco</option>
<option value = "toronto">Toronto</option>
<option value = "london">London</option>
<option value = "India">Mumbai</option>
</select>
</div>
<div class = "form-element">
<input type = "submit" class = "banner-btn" value = "Search">
</div>
</form>
<p class = "banner-text">Or browse the highlights</p>
<div class = "banner-btns">
<button type = "button" class = "banner-btn">
<span><i class = "fas fa-utensils"></i></span>Healthy meal
</button>
<button type = "button" class = "banner-btn">
<span><i class = "fas fa-map-marker-alt"></i></span> Our braches
</button>
<button type = "button" class = "banner-btn">
<span><i class = "fas fa-shopping-cart"></i></span> Shop medicine
</button>
</div>
</div>
</div>
</div>
</header>
<!-- end of header -->
<!-- about section -->
<section class = "about section-py" id = "about">
<div class = "container">
<span class = "section-name">
About
</span>
<h2 class = "section-title">
<span>About </span> Our Reputation
</h2>
<div class = "about-wrapper">
<div class = "single-about">
<span><i class = "fas fa-star"></i></span>
<h2 class = "normal-title">Our Vision</h2>
<p class = "normal-para">
We are relentless in our pursuit to find the right science and technology for every challenge. Our approach is defined not only by our thorough process, but also by our willingness to explore any angle that leads to the best answer
</p>
</div>
<div class = "single-about">
<span><i class = "fas fa-heart"></i></span>
<h2 class = "normal-title">People Love Us</h2>
<p class = "normal-para">
We are passionate about developing innovative, ground-breaking tests, products and tools to enhance patient care, provide value to our clients, and transform information into knowledge and insights.
</p>
</div>
<div class = "single-about">
<span><i class = "fas fa-award"></i></span>
<h2 class = "normal-title">Best Doctors</h2>
<p class = "normal-para">
We only work with excellent doctors from top cities across India. We verify every single doctor for their license and to ensure they operate to the highest clinical standards.
</p>
</div>
<div class = "single-about">
<span><i class = "fas fa-phone"></i></span>
<h2 class = "normal-title">Our Dedicated Support</h2>
<p class = "normal-para">
Our Customer support consist of number of hardworking individuals who work 24x7 to assist customers in making cost-effective and correct use of a product.
</p>
</div>
</div>
</div>
</section>
<!-- end of about section-->
<!-- package section -->
<section class = "package section-py" id = "tour">
<div class = "container">
<span class = "section-name">
Special Offers
</span>
<h2 class = "section-title">
<span>Health</span> Packages
</h2>
<div class = "tour-wrapper">
<!-- single tour card -->
<div class = "card">
<img src = "images/screening (1).jpg" alt = "tour places">
<div class = "card-body">
<div class = "tour-place">
<h2 class = "normal-text-package">Basic Health Screening </h2>
<h2 class = "tour-price">$199</h2>
</div>
<p class = "normal-para-package">Our Basic Health Screening is a comprehensive health check package which helps in the overall assessment of all the organs and systems of the body such as Heart, Lungs, Kidneys, Liver, Breast, Eyes, ENT and Dental etc.</p>
<p class = "normal-para-package">Duration 2-3 hour</p>
<hr>
</div>
<div class = "card-footer">
<button class = "btn-violet">
Book Now
</button>
</div>
</div>
<!-- end of single tour card -->
<!-- single tour card -->
<div class = "card">
<img src = "images/heartcheckup.jpg" alt = "heartcheckup">
<div class = "card-body">
<div class = "tour-place">
<h2 class = "normal-text-package">Basic Heart Check</h2>
<h2 class = "tour-price">$249</h2>
</div>
<p class = "normal-para-package">Our Basic Heart Check package is designed to provide one detailed evaluation of the Cardio Vascular System as well as overall health.We help you in taking care of your heart and keeping it healthy free from all diseases.</p>
<p class = "normal-para-package">Duration 1-2 hour</p>
<hr>
</div>
<div class = "card-footer">
<button class = "btn-violet">
Book Now
</button>
</div>
</div>
<!-- end of single tour card -->
<!-- single tour card -->
<div class = "card">
<img src = "images/child.jpg" alt = "tour places">
<div class = "card-body">
<div class = "tour-place">
<h2 class = "normal-text-package">Complete Child Care</h2>
<h2 class = "tour-price">$299</h2>
</div>
<p class = "normal-para-package">Our Child Health Check is specially designed to assess child’s overall health status and review his/her development. This package offers basic tests along with Pediatrician consultation and advice on diet and vaccination.</p>
<p class = "normal-para-package">Duration 1-2 day</p>
<hr>
</div>
<div class = "card-footer">
<button class = "btn-violet">
Book Now
</button>
</div>
</div>
<!-- end of single tour card -->
<!-- single tour card -->
<div class = "card">
<img src = "images/pexels-mart-production-7088526.jpg" alt = "tour places">
<div class = "card-body">
<div class = "tour-place">
<h2 class = "normal-text-package">Well Women Profile</h2>
<h2 class = "tour-price">$599</h2>
</div>
<p class = "normal-para-package">Well Women Check I is specially designed health package for basic assessment of general health, gynecological problems & screening for cancer breast and cervix, the most common cancers in women</p>
<p class = "normal-para-package">Duration 2-3 day</p>
<hr>
</div>
<div class = "card-footer">
<button class = "btn-violet">
Book Now
</button>
</div>
</div>
</div>
</div>
</section>
<!-- end of tour section -->
<!-- numscroller -->
<section class = "facts section-py">
<div class = "container">
<h2> Happiness Counter</h2>
<p class = "normal-para">We truly abide in providing satisfaction to our customer.</p>
<div class = "fact-wrapper">
<div class = "single-data">
<span class='numscroller' data-min='1' data-max='6000' data-delay='20' data-increment='5'>25000</span>
<span class = "numscroller-text">Happy Customers</span>
</div>
<div class = "single-data">
<span class='numscroller' data-min='1' data-max='9600' data-delay='20' data-increment='5'>10</span>
<span class = "numscroller-text">Branch</span>
</div>
<div class = "single-data">
<span class='numscroller' data-min='1' data-max='12000' data-delay='20' data-increment='5'>500</span>
<span class = "numscroller-text">Daily visiters</span>
</div>
<div class = "single-data">
<span class='numscroller' data-min='1' data-max='5550' data-delay='20' data-increment='5'>125</span>
<span class = "numscroller-text">Reports delivered today</span>
</div>
</div>
</div>
</section>
<!-- end of numscroller -->
<!-- blog section -->
<section class = "blog section-py" id = "blog">
<div class = "container">
<span class = "section-name">
Recent Blog
</span>
<h2 class = "section-title ">
<span>Tips</span> & Articles
</h2>
<div class = "blog-wrapper">
<!-- single blog card -->
<div class = "card-blog card1">
<div class = "card-body">
<p class = "normal-text"> Healthy habits</p>
<a href = "#" class = "normal-title blog-link ">It’s important to remember that we have evolved from nomadic ancestors ,our bodies are designed and have evolved to be regularly active. Read more..</a>
<p class = "normal-text-end">june 12, 2021 Guest Author</p>
<span class = "normal-text">
<i class = "fas fa-comment-alt"></i> 3
</span>
</div>
</div>
<!-- end of single blog card -->
<!-- single blog card -->
<div class = "card-blog card2">
<div class = "card-body">
<p class = "normal-text">Covid-19</p>
<a href = "#" class = "normal-title blog-link">Coronaviruses, cause mild to severe respiratory illness including death.. The best preventive measures include Read more..</a>
<p class = "normal-text-end">May 14, 2021 Guest Author</p>
<span class = "normal-text">
<i class = "fas fa-comment-alt"></i> 3
</span>
</div>
</div>
<!-- end of single blog card -->
<!-- single blog card -->
<div class = "card-blog card3">
<div class = "card-body">
<p class = "normal-text">Ayurved</p>
<a href = "#" class = "normal-title blog-link">It is on of the oldest and holistic healing process .It’s based on the belief that health and wellness depend on a delicate balance between the mind Read more…</a>
<p class = "normal-text-end">June 15, 2021 Guest Author</p>
<span class = "normal-text">
<i class = "fas fa-comment-alt"></i> 3
</span>
</div>
</div>
<!-- end of single blog card -->
<!-- single blog card -->
<div class = "card-blog card4">
<div class = "card-body">
<p class = "normal-text">Eat Healthy</p>
<a href = "#" class = "normal-title blog-link">Healthy eating means eating a variety of foods that give you the nutrients you need to maintain your health, feel good, and have energy Read more…</a>
<p class = "normal-text-end">June 27, Guest Author</p>
<span class = "normal-text">
<i class = "fas fa-comment-alt"></i> 3
</span>
</div>
</div>
<!-- end of single blog card -->
</div>
</div>
</section>
<!-- end of blog section -->
<!-- newsletter section -->
<section class = "newsletter section-py">
<div class = "container">
<div class = "newsletter-wrapper">
<h2>Subscribe to our Newsletter</h2>
<p class = "normal-para">Each month, our email newsletter focuses on a different health care topic and has features covering a range of perspectives on that topic.Each month, our email newsletter focuses on a different health care topic and has features covering a range of perspectives on that topic.</p>
<form class = "subscribe-form">
<div class = "form-element">
<input type = "email" class = "form-control" placeholder="Enter email address">
</div>
<div class = "form-element">
<input type = "submit" class = "form-control" value = "Subscribe">
</div>
</form>
</div>
</div>
</section>
<!-- end of newsletter section -->
<!-- testimonial section -->
<section class = "testimonial section-py">
<div class = "container">
<div class = "testimonial-wrapper">
<!-- testimonial left -->
<div class = "testimonial-left">
<span class = "section-name">Best Healthcare Service</span>
<h2 class = "section-title">
<span>Why</span> Choose Us?
</h2>
<p class = "normal-para">
CureForU empowers people to take action to improve health outcomes. Derived from the world's largest database of clinical lab results, our diagnostic insights reveal new avenues to identify and treat disease, inspire healthy behaviors and improve health care management.
</p>
<p class = "normal-para"> We’re dedicated to fulfilling the promise of human potential, in all places, in all aspects and stages of life. We believe that health is the key to that promise. Because at our healthiest, we’re capable of achieving anything. And that’s why our pursuit of helping people achieve their best health at every life stage will never end. This is how we put that belief into practice each and every day</p>
<button type = "button" class = "btn-circle">Read More</button>
</div>
<!-- testimonial right -->
<div class = "testimonial-right">
<span class = "section-name">Testimony</span>
<h2 class = "section-title">
<span>What</span> People Says?
</h2>
<div class = "test-slider">
<!-- single testimonial -->
<div class = "test-single">
<div class = "test-img">
<img src = "images/person1.jpg" alt = "guest person">
<span class = "quote-icon">
<i class = "fas fa-quote-left"></i>
</span>
</div>
<div class = "text-content">
<p class = "normal-para-package">
The staff has been extremely good to me .Service is good, affordable pricing and timely report .courteous staff and good hygiene and cleanliness standards ,over all experience was very good.We are happy to have CureForU in our Area.
</p>
<div class = "about-guest">
<p>Dennis Green</p>
<p>Guest from America</p>
</div>
</div>
</div>
<!-- end of single testimonial -->
<!-- single testimonial -->
<div class = "test-single">
<div class = "test-img">
<img src = "images/person2.jpg" alt = "guest person">
<span class = "quote-icon">
<i class = "fas fa-quote-left"></i>
</span>
</div>
<div class = "text-content">
<p class = "normal-para-package">
They offer a wide variety of health care check-ups which are 100% accurate and at an affordable price.They use state of the art equipments ranging from simplest screening to advanced test.Apart from it the staff is very cooperative.
</p>
<div class = "about-guest">
<p>Kevin </p>
<p>Guest from London</p>
</div>
</div>
</div>
<!-- end of single testimonial -->
<!-- single testimonial -->
<div class = "test-single">
<div class = "test-img">
<img src = "images/person3.jpg" alt = "guest person">
<span class = "quote-icon">
<i class = "fas fa-quote-left"></i>
</span>
</div>
<div class = "text-content">
<p class = "normal-para-package">
I would like to compliment you and your team at CureForU on the stellar job you guys are doing in these difficult times . Congratulations ! and I am sure you guys will get better as we go along.
</p>
<div class = "about-guest">
<p>Varun Nagpal</p>
<p>Guest from India</p>
</div>
</div>
</div>
<!-- end of single testimonial -->
</div>
</div>
</div>
</div>
</section>
<!-- end of testimonial section -->
<!-- footer -->
<footer class = "footer section-py" id = "contact">
<div class = "container">
<div class = "footer-wrapper">
<div class = "footer-div footer-div-1">
<h2 class = "footer-brand">CureForU</h2>
<p class = "normal-para"> CureForU empowers people to take action to improve health outcomes. Derived from the world's largest database of clinical lab results, our diagnostic insights reveal new avenues to identify and treat disease.</p>
<div class = "social-icons">
<a href = "#">
<span><i class = "fab fa-twitter"></i></span>
</a>
<a href = "#">
<span><i class = "fab fa-facebook"></i></span>
</a>
<a href = "#">
<span><i class = "fab fa-instagram"></i></span>
</a>
</div>
</div>
<div class = "footer-div footer-div-2">
<h2 class = "normal-title">Information</h2>
<ul class = "footer-links">
<li><a href = "#">About</a></li>
<li><a href = "#">Service</a></li>
<li><a href = "#">Terms and Conditions</a></li>
<li><a href = "#">Best Price Guarantee</a></li>
<li><a href = "#">Privacy and Policy</a></li>
</ul>
</div>
<div class = "footer-div footer-div-3">
<h2 class = "normal-title">Customer Support</h2>
<ul class = "footer-links">
<li><a href = "#">FAQ</a></li>
<li><a href = "#">Payment Option</a></li>
<li><a href = "#">Booking Tips</a></li>
<li><a href = "#">Contact Us</a></li>
</ul>
</div>
<div class = "footer-div footer-div-4">
<h2 class = "normal-title">Have a Question?</h2>
<ul class = "footer-links">
<li class = "contact-single">
<span>
<i class = "fas fa-map-marker-alt"></i>
</span>
<span>203 Fake St. Mountain View, San Francisco, California, USA</span>
</li>
<li class = "contact-single">
<span>
<i class = "fas fa-phone"></i>
</span>
<span>+ 3844 2783 283</span>
</li>
<li class = "contact-single">
<span>
<i class = "fas fa-envelope"></i>
</span>
<span> helpdesk@cureforu247.com</span>
</li>
</ul>
</div>
</div>
<div class = "copyright-text">
<p>Copyright © 2021 All rights reserved.</p>
</div>
</div>
</footer>
<!-- end of footer -->
<!-- jQuery CDN-->
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<!--numscroller -->
<!-- <script src = "numscroller-gh-pages/numscroller-1.0.js"></script> -->
<!-- Slick JS file -->
<!-- <script src = "slick-1.8.1/slick/slick.min.js"></script> -->
<!--Custom JS -->
<script src = "script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/noframework.waypoints.min.js" integrity="sha512-fHXRw0CXruAoINU11+hgqYvY/PcsOWzmj0QmcSOtjlJcqITbPyypc8cYpidjPurWpCnlB8VKfRwx6PIpASCUkQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Counter-Up/1.0.0/jquery.counterup.min.js" integrity="sha512-d8F1J2kyiRowBB/8/pAWsqUl0wSEOkG5KATkVV4slfblq9VRQ6MyDZVxWl2tWd+mPhuCbpTB4M7uU/x9FlgQ9Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
$('.numscroller').counterUp({
delay: 10,
time: 1000
});
</script>
</body>
</html>