-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
829 lines (778 loc) · 40.7 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
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dentition - Medical Category Bootstrap Responsive Website - Home </title>
<!-- google font -->
<link href="//fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<!-- Template CSS Style link -->
<link rel="stylesheet" href="assets/css/style-starter.css">
<style>
.highlightedText {
background-color: yellow;
}
#upArrow,
#downArrow {
position: fixed;
right: 10px;
bottom: 10px;
font-size: 24px;
cursor: pointer;
display: none;
}
</style>
</head>
<body>
<!-- header -->
<header id="site-header" class="fixed-top">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="index.html">
<i class="fas fa-tooth"></i>Dentition
</a>
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarScroll" aria-controls="navbarScroll" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon fa icon-expand fa-bars"></span>
<span class="navbar-toggler-icon fa icon-close fa-times"></span>
</button>
<div class="collapse navbar-collapse" id="navbarScroll">
<ul class="navbar-nav ms-auto me-2 my-2 my-lg-0 navbar-nav-scroll">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<!-- Modified Search Bar -->
<form id="searchForm" class="d-flex search-header">
<input id="searchInput" class="form-control" type="search" placeholder="Search within the page..." aria-label="Search" required>
<button class="btn btn-style" type="button" onclick="searchWithinPage()"><i class="fas fa-search"></i></button>
</form>
<p id="searchReminder" style="color: red; font-style: italic;">Kindly use the search button 🔍 instead of pressing Enter on keyboard</p>
</div>
<!-- toggle switch for light and dark theme -->
<div class="cont-ser-position">
<nav class="navigation">
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
<div class="mode-container">
<i class="gg-sun"></i>
<i class="gg-moon"></i>
</div>
</label>
</div>
</nav>
</div>
<!-- //toggle switch for light and dark theme -->
</nav>
</div>
</header>
<!-- //header -->
<!-- JavaScript for the Search Functionality -->
<script>
function searchWithinPage() {
var searchText = document.getElementById("searchInput").value.trim();
if (searchText !== "") {
var content = document.body.textContent || document.body.innerText;
var searchTerm = new RegExp(searchText, "gi"); // Create a regular expression for global and case-insensitive search
var matches = content.match(searchTerm);
if (matches) {
var count = matches.length;
// Highlight the matches using a CSS class
document.body.innerHTML = document.body.innerHTML.replace(searchTerm, '<span class="highlightedText">$&</span>');
alert("Found " + count + " matches.");
scrollToFirstMatch(searchTerm);
} else {
alert("No matches found.");
hideNavigationArrows();
}
} else {
alert("Please enter a search term.");
}
return false; // Prevent form submission from changing the URL
}
function scrollToFirstMatch(searchTerm) {
var allMatches = document.querySelectorAll('.highlightedText');
if (allMatches.length > 0) {
var firstMatch = allMatches[0];
var position = firstMatch.getBoundingClientRect().top + window.pageYOffset;
window.scrollTo({
top: position,
behavior: 'smooth'
});
showNavigationArrows();
}
}
function showNavigationArrows() {
document.getElementById('upArrow').style.display = 'block';
document.getElementById('downArrow').style.display = 'block';
}
function hideNavigationArrows() {
document.getElementById('upArrow').style.display = 'none';
document.getElementById('downArrow').style.display = 'none';
}
document.getElementById('upArrow').addEventListener('click', function () {
window.scrollBy(0, -window.innerHeight / 2);
});
document.getElementById('downArrow').addEventListener('click', function () {
window.scrollBy(0, window.innerHeight / 2);
});
// Navigate to first search result on page load
window.onload = function () {
var urlParams = new URLSearchParams(window.location.search);
var searchTerm = urlParams.get('search');
if (searchTerm) {
document.getElementById('searchInput').value = searchTerm;
searchWithinPage();
}
};
// Add event listener for Enter key press in the search input field
document.getElementById('searchInput').addEventListener('keydown', function(event) {
if (event.key === 'Enter') {
event.preventDefault(); // Prevent form submission
// Trigger search functionality when Enter key is pressed
searchWithinPage();
}
});
</script>
<!-- End of JavaScript for the Search Functionality -->
<!-- Scroll navigation arrows -->
<div id="upArrow">↑</div>
<div id="downArrow">↓</div>
<!-- End of Scroll navigation arrows -->
</body>
</html>
<!-- banner section -->
<section class="w3l-main-slider" id="home">
<div class="banner-content">
<div id="demo-1">
<div class="demo-inner-content">
<div class="container">
<div class="banner-info">
<p class="mb-1">Only one kind of Treatement!</p>
<h3>Your New Smile</h3>
<a class="btn btn-style btn-style-2 mt-sm-5 mt-4" href="appointment.html">Book Now</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //banner section -->
<!-- home block 1 -->
<section class="w3l-servicesblock py-5">
<div class="container py-md-5 py-4">
<div class="row pb-xl-5 align-items-center">
<div class="col-lg-6 position-relative home-block-3-left pb-lg-0 pb-5">
<div class="position-relative">
<img src="assets/images/home1.jpg" alt="" class="img-fluid radius-image">
</div>
<div class="imginfo__box">
<h6 class="imginfo__title">Get a Appointment Today!</h6>
<p>Secure your spot today! Don’t wait—schedule your appointment now for expert dental care and a healthier smile.<br> Your oral health journey begins with us. </p>
<a href="tel:http://1(800)7654321"><i class="fas fa-phone-alt"></i> 1-800-654-3210</a>
</div>
</div>
<div class="col-xl-5 col-lg-6 offset-xl-1 mt-lg-0 mt-5 pt-lg-0 pt-5">
<h3 class="title-style mb-md-5 mb-4">A Warm <span>Welcome</span> and a Beautiful <span>Smile</span>
</h3>
<p class="sub-para">"Our clients are our priority, we offer quality dental services with a team of
specialists. More details about our services below".</p>
<p class="mt-4 pt-sm-2">"Welcome! At Dentition, we greet you with warmth and ensure your visit leaves you beaming. Expect a beautiful smile from our dedicated team along with exceptional dental care."</p>
<p class="mt-4 pt-sm-2">Experience our warm welcome and leave with a beautiful smile. At Dentition, we blend hospitality with top-tier dental care, ensuring your visit is both comforting and transformative.</p>
</div>
</div>
</div>
</section>
<!-- //home block 1 -->
<!-- home block 2 -->
<section class="about-section text-center pt-lg-5 pb-5">
<div class="container pt-lg-5 pb-lg-5 pb-4">
<h3 class="title-style text-center mb-5">Healthy Smiles <span>Everyday!</span></h3>
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6">
<div class="about-single p-3">
<div class="about-icon mb-4">
<i class="fas fa-tooth"></i>
</div>
<div class="about-content">
<h5 class="mb-3"><a href="about.html">General Dentistry</a></h5>
<p>Comprehensive oral care covering routine check-ups, fillings, cleanings, and preventive treatments.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-md-0 mt-3">
<div class="about-single p-3">
<div class="about-icon mb-4">
<i class="fas fa-wheelchair"></i>
</div>
<div class="about-content">
<h5 class="mb-3"><a href="about.html">Urgent Surgery</a></h5>
<p>Immediate attention needed? Contact professionals promptly for urgent surgical intervention.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-0 mt-3">
<div class="about-single p-3">
<div class="about-icon mb-4">
<i class="fas fa-user-md"></i>
</div>
<div class="about-content">
<h5 class="mb-3"><a href="about.html">Dental Implants</a></h5>
<p>"Permanent solutions for missing teeth, restoring function, and enhancing your smile confidently."</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4">
<div class="about-single p-3">
<div class="about-icon mb-4">
<i class="fas fa-teeth-open"></i>
</div>
<div class="about-content">
<h5 class="mb-3"><a href="about.html">Tooth Whitening</a></h5>
<p>Tooth whitening brightens teeth, removing stains and discoloration, enhancing your smile for a confident, radiant appearance. Safe, effective, and transformative.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4">
<div class="about-single p-3">
<div class="about-icon mb-4">
<i class="fas fa-crutch"></i>
</div>
<div class="about-content">
<h5 class="mb-3"><a href="about.html">Prosthesis</a></h5>
<p>Artificial devices enhancing functionality, from limbs to dental fixtures, improving quality of life for many individuals globally.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4">
<div class="about-single p-3">
<div class="about-icon mb-4">
<i class="fas fa-teeth"></i>
</div>
<div class="about-content">
<h5 class="mb-3"><a href="about.html">Dental Braces</a></h5>
<p>Dental braces align teeth, correcting misalignments for a straighter smile and improved oral health. Consultation helps determine suitability.</p>
</div>
</div>
</div>
</div>
<a href="services.html" class="btn btn-style mt-5">Learn More</a>
</div>
</section>
<!-- //home block 2 -->
<!-- home block 3 with slider -->
<section class="w3l-index5 py-5">
<div class="container py-md-5 py-4">
<h3 class="title-style text-center mb-5">Our Best <span>Services</span></h3>
<div class="inner-sec-w3layouts mt-md-5 mt-4">
<div class="owl-three owl-carousel owl-theme">
<div class="item">
<div class="content-left-sec">
<a class="blog-link d-block zoom-image" href="#url"><img src="assets/images/s1.jpg"
class="img-fluid scale-image" alt=""></a>
<div class="blog-info">
<a href="#url">
<h4 class="mb-0">Sedation Dentistry</h4>
</a>
<p>Relaxing methods for anxiety-free dental procedures, ensuring comfort and ease during treatments.</p>
<a href="services.html" class="btn btn-style-primary">Learn More<i
class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="item">
<div class="content-left-sec">
<a class="blog-link d-block zoom-image" href="#url"><img src="assets/images/s2.jpg"
class="img-fluid scale-image" alt=""></a>
<div class="blog-info">
<a href="#url">
<h4 class="mb-0">Child’s Dental Care</h4>
</a>
<p>Ensure your child's bright smile with early dental check-ups and gentle care practices.</p>
<a href="services.html" class="btn btn-style-primary">Learn More<i
class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="item">
<div class="content-left-sec">
<a class="blog-link d-block zoom-image" href="#url"><img src="assets/images/s3.jpg"
class="img-fluid scale-image" alt=""></a>
<div class="blog-info">
<a href="#url">
<h4 class="mb-0">Family Dental Care</h4>
</a>
<p>"Comprehensive dental solutions for the whole family, ensuring healthy smiles for every generation."</p>
<a href="services.html" class="btn btn-style-primary">Learn More<i
class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="item">
<div class="content-left-sec">
<a class="blog-link d-block zoom-image" href="#url"><img src="assets/images/s4.jpg"
class="img-fluid scale-image" alt=""></a>
<div class="blog-info">
<a href="#url">
<h4 class="mb-0">Cosmetic Dentistry</h4>
</a>
<p>"Enhance your smile with Cosmetic Dentistry: perfecting aesthetics and restoring confidence with precision treatments."</p>
<a href="services.html" class="btn btn-style-primary">Learn More<i
class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="item">
<div class="content-left-sec">
<a class="blog-link d-block zoom-image" href="#url"><img src="assets/images/s5.jpg"
class="img-fluid scale-image" alt=""></a>
<div class="blog-info">
<a href="#url">
<h4 class="mb-0">Cleaning with Air Flow</h4>
</a>
<p>"Experience efficient plaque removal with Air Flow, a gentle yet powerful dental cleaning technique."</p>
<a href="services.html" class="btn btn-style-primary">Learn More<i
class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="item">
<div class="content-left-sec">
<a class="blog-link d-block zoom-image" href="#url"><img src="assets/images/s7.jpg"
class="img-fluid scale-image" alt=""></a>
<div class="blog-info">
<a href="#url">
<h4 class="mb-0">Complete Whitening</h4>
</a>
<p>"Experience the ultimate smile transformation with our Complete Whitening solution. Radiant, dazzling smiles await!"</p>
<a href="services.html" class="btn btn-style-primary">Learn More<i
class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //home block 3 with slider -->
<!-- stats section -->
<section class="w3-bottom-stats py-5">
<div class="container py-md-5 py-4">
<div class="row py-4">
<div class="col-md-7 pe-lg-5">
<h5 class="text-new mb-4">We are proud to have the opportunity to give you the smile of your dreams.
</h5>
<p class="mb-3">At Dentition, we take pride in crafting the smile you've always envisioned. Our dedicated team is committed to personalized care, offering tailored solutions to make your dream smile a reality.
</p>
<p>With cutting-edge treatments and compassionate expertise, we're here to transform your dental aspirations into a confident, radiant reality.</p>
<a href="about.html" class="btn btn-style btn-style-2 mt-lg-5 mt-4">Learn More</a>
</div>
<div class="col-md-5 text-md-center mt-md-0 mt-5">
<div class="counter">
<div class="timer count-title count-number" data-to="6370" data-speed="1500">6370</div>
<p class="count-text mt-sm-2">Happy Smiles</p>
</div>
<div class="counter mt-sm-5 mt-4">
<div class="timer count-title count-number" data-to="36" data-speed="1500">36</div>
<p class="count-text mt-sm-2">Years of experience</p>
</div>
<div class="counter mt-sm-5 mt-4">
<div class="timer count-title count-number" data-to="7600" data-speed="1500">7600</div>
<p class="count-text mt-sm-2">Patients a year</p>
</div>
</div>
</div>
</div>
</section>
<!-- //stats section -->
<!-- team section -->
<section class="w3l-team py-5">
<div class="container py-md-5 py-4">
<h3 class="title-style text-center mb-5">Meet Our <span>Doctors</span></h3>
<div class="row text-center">
<div class="col-lg-3 col-sm-6">
<div class="team-block-single">
<div class="team-grids">
<a href="#team-single">
<img src="assets/images/team1.jpg" class="img-fluid" alt="">
<div class="team-info">
<div class="social-icons-section">
<a class="fac" href="#facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a class="twitter mx-2" href="#twitter">
<i class="fab fa-twitter"></i>
</a>
<a class="google" href="#google-plus">
<i class="fab fa-google-plus-g"></i>
</a>
</div>
</div>
</a>
</div>
<div class="team-bottom-block p-4">
<h5 class="member mb-1"><a href="#team">Olive Yew</a></h5>
<small>Dentist</small>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 mt-sm-0 mt-4">
<div class="team-block-single">
<div class="team-grids">
<a href="#team-single">
<img src="assets/images/team2.jpg" class="img-fluid" alt="">
<div class="team-info">
<div class="social-icons-section">
<a class="fac" href="#facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a class="twitter mx-2" href="#twitter">
<i class="fab fa-twitter"></i>
</a>
<a class="google" href="#google-plus">
<i class="fab fa-google-plus-g"></i>
</a>
</div>
</div>
</a>
</div>
<div class="team-bottom-block p-4">
<h5 class="member mb-1 active"><a href="#team">Aida Joe</a></h5>
<small>Orthodontist</small>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 mt-lg-0 mt-4">
<div class="team-block-single">
<div class="team-grids">
<a href="#team-single">
<img src="assets/images/team3.jpg" class="img-fluid" alt="">
<div class="team-info">
<div class="social-icons-section">
<a class="fac" href="#facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a class="twitter mx-2" href="#twitter">
<i class="fab fa-twitter"></i>
</a>
<a class="google" href="#google-plus">
<i class="fab fa-google-plus-g"></i>
</a>
</div>
</div>
</a>
</div>
<div class="team-bottom-block p-4">
<h5 class="member mb-1"><a href="#team">Teri Dac</a></h5>
<small>Hygienist</small>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 mt-lg-0 mt-4">
<div class="team-block-single">
<div class="team-grids">
<a href="#team-single">
<img src="assets/images/team4.jpg" class="img-fluid" alt="">
<div class="team-info">
<div class="social-icons-section">
<a class="fac" href="#facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a class="twitter mx-2" href="#twitter">
<i class="fab fa-twitter"></i>
</a>
<a class="google" href="#google-plus">
<i class="fab fa-google-plus-g"></i>
</a>
</div>
</div>
</a>
</div>
<div class="team-bottom-block p-4">
<h5 class="member mb-1"><a href="#team">Anton Bne</a></h5>
<small>Dentist</small>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //team setion -->
<!-- blog section -->
<div class="w3l-homeblock2 py-5">
<div class="container py-md-5 py-4">
<h3 class="title-style text-center mb-5">Latest <span>Blog</span> Posts</h3>
<div class="row">
<div class="col-lg-6">
<div class="bg-clr-white hover-box">
<div class="row align-items-center">
<div class="col-sm-6 position-relative">
<a href="#blog">
<img class="img-fluid d-block" src="assets/images/blog3.jpg" alt="image">
</a>
</div>
<div class="col-sm-6">
<div class="card-body blog-details align-self pl-sm-0">
<a href="#blog" class="blog-desc">Denists Against Root Canals
</a>
<p>"Dentists advocate preventive care, minimizing the need for invasive procedures like root canals."</p>
<div class="d-flex align-items-center justify-content-between mt-lg-4 mt-5">
<h5 class="text-blog-e">December 15, 2023</h5>
<a href="#blog" class="blog-icon-e"><i class="fas fa-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-lg-0 mt-4">
<div class="bg-clr-white hover-box">
<div class="row align-items-center">
<div class="col-sm-6 position-relative">
<a href="#blog">
<img class="img-fluid d-block" src="assets/images/blog2.jpg" alt="Card image cap">
</a>
</div>
<div class="col-sm-6">
<div class="card-body blog-details align-self pl-sm-0">
<a href="#blog" class="blog-desc">Treatment with Great Care</a>
<p>"Every treatment at Great Care is delivered with precision, expertise, and genuine patient-centered dedication."</p>
<div class="d-flex align-items-center justify-content-between mt-lg-4 mt-5">
<h5 class="text-blog-e">December 18, 2023</h5>
<a href="#blog" class="blog-icon-e"><i class="fas fa-plus"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- //blog section -->
<!-- skills section -->
<section class="w3l-progress pt-5" id="progress">
<div class="container pt-md-5 pt-4">
<div class="row align-items-center">
<div class="col-lg-6 pe-lg-5">
<div class="progress-info info1">
<h6 class="progress-tittle">Orthodontics <span class="">80%</span></h6>
<div class="progress">
<div class="progress-bar progress-bar-striped gradient-1" role="progressbar"
style="width: 80%" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress-info info2">
<h6 class="progress-tittle">Cosmetic Work <span class="">95%</span>
</h6>
<div class="progress">
<div class="progress-bar progress-bar-striped gradient-2" role="progressbar"
style="width: 95%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress-info info3">
<h6 class="progress-tittle">Implants <span class="">60%</span></h6>
<div class="progress">
<div class="progress-bar progress-bar-striped gradient-3" role="progressbar"
style="width: 60%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress-info info4">
<h6 class="progress-tittle">React JS <span class="">85%</span></h6>
<div class="progress">
<div class="progress-bar progress-bar-striped gradient-4" role="progressbar"
style="width: 85%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
<div class="col-lg-6 text-center">
<img src="assets/images/img1.png" alt="" class="img-fluid">
</div>
</div>
</div>
</section>
<!-- //skills section -->
<!-- call section -->
<section class="w3l-call-to-action-6">
<div class="container py-md-5 py-sm-4 py-5">
<div class="d-sm-flex align-items-center justify-content-between">
<div class="left-content-call">
<h3 class="title-big">Visit Now!</h3>
<p class="text-white mt-1">Begin the change today</p>
</div>
<div class="right-content-call mt-sm-0 mt-4">
<ul class="buttons">
<li class="phone-sec me-lg-4"><i class="fas fa-phone-volume"></i>
<a class="call-style-w3" href="tel:+1(23) 456 789 0000">+1(23) 456 789 0000</a>
</li>
<li><a href="appointment.html" class="btn btn-style btn-style-2 mt-lg-0 mt-3">Book Now</a> </li>
</ul>
</div>
</div>
</div>
</section>
<!-- //call section -->
<!-- footer -->
<footer class="w3l-footer-29-main">
<div class="footer-29 pt-5 pb-4">
<div class="container pt-md-4">
<div class="row footer-top-29">
<div class="col-md-5 footer-list-29 pe-xl-5">
<h6 class="footer-title-29">Contact Info </h6>
<p class="mb-2 pe-xl-5">Address : Dentition, 10001, 5th Avenue, #06 lane street, NY - 62617.
</p>
<p class="mb-2">Phone Number : <a href="tel:+1(21) 234 4567">+1(21) 234 4567</a></p>
<p class="mb-2">Email : <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="col-md-2 col-4 footer-list-29 mt-md-0 mt-4">
<ul>
<h6 class="footer-title-29">About</h6>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">Special Offers</a></li>
<li><a href="about.html">Orthodontics</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-3 col-4 ps-lg-5 ps-md-4 footer-list-29 mt-md-0 mt-4">
<ul>
<h6 class="footer-title-29">Explore</h6>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-2 col-4 footer-list-29 mt-md-0 mt-4">
<ul>
<h6 class="footer-title-29">Dentition</h6>
<li><a href="#doctor">Dr. John Doe</a></li>
<li><a href="#doctor">Dr. Martin Ker</a></li>
<li><a href="#doctor">Dr. Alexander</a></li>
<li><a href="#doctor">Dr. Eliz Wilson</a></li>
</ul>
</div>
</div>
<!-- copyright -->
<p class="copy-footer-29 text-center pt-lg-2 mt-5 pb-2">© 2023 Dentition. All rights reserved. Design by Hariharan for FRT Project</a></p>
<!-- //copyright -->
</div>
</div>
<iframe src='https://webchat.botframework.com/embed/healthbot4-cipf8tn?s=5kaMK_IOZB4.8odyztFbpOVMoXUkNKTAMrbHZga05QuiFmF0EZyDvl8' style='min-width: 400px; width: 100%; min-height: 500px;'></iframe>
</footer>
<!-- //footer -->
<!-- Js scripts -->
<!-- move top -->
<button onclick="topFunction()" id="movetop" title="Go to top">
<span class="fas fa-level-up-alt" aria-hidden="true"></span>
</button>
<script>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("movetop").style.display = "block";
} else {
document.getElementById("movetop").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<!-- //move top -->
<!-- common jquery plugin -->
<script src="assets/js/jquery-3.3.1.min.js"></script>
<!-- //common jquery plugin -->
<!-- for services carousel slider -->
<script src="assets/js/owl.carousel.js"></script>
<script>
$(document).ready(function () {
$('.owl-three').owlCarousel({
loop: true,
stagePadding: 20,
margin: 20,
autoplay: true,
autoplayTimeout: 5000,
autoplaySpeed: 1000,
autoplayHoverPause: false,
nav: false,
responsive: {
0: {
items: 1
},
600: {
items: 2
},
991: {
items: 3
},
1200: {
items: 4
}
}
})
})
</script>
<!-- //for services carousel slider -->
<!-- theme switch js (light and dark)-->
<script src="assets/js/theme-change.js"></script>
<!-- //theme switch js (light and dark)-->
<!-- MENU-JS -->
<script>
$(window).on("scroll", function () {
var scroll = $(window).scrollTop();
if (scroll >= 80) {
$("#site-header").addClass("nav-fixed");
} else {
$("#site-header").removeClass("nav-fixed");
}
});
//Main navigation Active Class Add Remove
$(".navbar-toggler").on("click", function () {
$("header").toggleClass("active");
});
$(document).on("ready", function () {
if ($(window).width() > 991) {
$("header").removeClass("active");
}
$(window).on("resize", function () {
if ($(window).width() > 991) {
$("header").removeClass("active");
}
});
});
</script>
<!-- //MENU-JS -->
<!-- disable body scroll which navbar is in active -->
<script>
$(function () {
$('.navbar-toggler').click(function () {
$('body').toggleClass('noscroll');
})
});
</script>
<!-- //disable body scroll which navbar is in active -->
<!-- bootstrap -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- //bootstrap -->
<!-- //Js scripts -->
</body>
</html>