-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
376 lines (341 loc) · 18.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home Page</title>
<!-- Preload the logo image to improve LCP -->
<!-- <link rel="preload" href="icons/logo1.png" as="image"> -->
<link rel="stylesheet" href="counter.css">
<section class="header-section">
<!-- Logo and Social Media Section -->
<div class="logo-and-social">
<img src="icons/newlogo1.webp" class="logo-image" alt="Logo">
<div class="social-buttons">
<a href="https://www.facebook.com/get.fit.with.chhavi?mibextid=ZbWKwL" class="btn facebook" target="_blank" rel="noopener noreferrer">
<img src="icons/2023_Facebook_icon.svg.webp" alt="Facebook">
</a>
<a href="https://wa.me/918826386125" class="btn whatsapp" target="_blank" rel="noopener noreferrer">
<img src="icons/whatsapp.png" alt="WhatsApp">
</a>
<a href="https://www.linkedin.com/in/dr-chhavi-goel-phd-cde-cpt-46258925/?profileId=ACoAAAU_E0oBz71Eyr_8amNlDuNdsakqxlxxWP4" class="btn linkedin" target="_blank" rel="noopener noreferrer">
<img src="icons/linkedinmain.jpeg" alt="LinkedIn">
</a>
<a href="https://www.instagram.com/dietitianchhavigoel/?hl=en" class="btn instagram" target="_blank" rel="noopener noreferrer">
<img src="icons/pngtree-three-dimensional-instagram-icon-png-image_9015419.png" alt="Instagram">
</a>
<a href="https://www.youtube.com/@dietitianchhavigoel" class="btn youtube" target="_blank" rel="noopener noreferrer">
<img src="icons/yt.png" alt="YouTube">
</a>
</div>
</div>
</section>
<!-- Inline critical CSS for above-the-fold content -->
<!-- -->
<!-- Load non-critical styles asynchronously -->
<link rel="stylesheet" href="style.css" media="print" onload="this.media='all'">
<!-- Swiper CSS -->
<link rel="stylesheet" href="https://unpkg.com/swiper@9/swiper-bundle.min.css" />
<!-- Font Awesome CSS (deferred) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" media="print" onload="this.media='all'">
<!-- Async loading of third-party scripts -->
<script async src="https://unpkg.com/swiper@9/swiper-bundle.min.js"></script>
</head>
<body>
<!-- Optimized image with srcset for responsiveness and lazy loading -->
<!-- <img src="icons/logo1.png" alt="Logo" class="logo-image" loading="lazy"
srcset="icons/logo1-small.jpg 500w, icons/logo1-medium.jpg 1000w, icons/logo1-large.jpg 1500w"
sizes="(max-width: 600px) 100vw, 50vw"
alt="Logo"
class="logo-image"
loading="lazy"
/> -->
<!-- Contact Header -->
<div class="contact-header">
<a href="index.html">Home</a>
<a href="achievements.html">Achievements</a>
<a href="blog.html">Blog</a>
<a href="appointment.html">Appointment</a>
<div class="dropdown">
<a href="#" class="dropdown-btn">Services</a>
<div class="dropdown-content">
<a href="hypertension-diet.html">Hypertension Diet</a>
<a href="diabetes-diet.html">Diabetes Diet</a>
<a href="pcos-diet.html">PCOS Diet</a>
<a href="thyroid-management.html">Thyroid Management</a>
<a href="cancer-treatment-programs.html">Cancer Treatment Programs</a>
<a href="cholesterol-diet.html">Cholesterol Diet</a>
<a href="weight-loss-program.html">Weight Loss Program</a>
</div>
</div>
<a href="sucessstory.html">Success Stories</a>
<a href="testimonial.html">Testimonials</a>
<a href="membership.html">Plans and prices</a>
<a href="contactus.html">Contact us</a>
</div>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-custom">
<div class="container-fluid">
<!-- Logo Section -->
<section class="logo-section">
<div class="logo-content">
<a href="#" class="navbar-brand"></a>
<div class="text-overlay">
<h1>Empowering You with Nutrition</h1>
<p>Transform your health and well-being with personalized diet plans and expert guidance.</p>
</div>
</div>
</section>
</div>
</nav>
<!-- Main Content -->
<div class="container introduction">
<img src="chavi.jpg" alt="Introduction Image" class="intro-img" loading="lazy" />
<div class="intro-text">
<h1>Dr. Chhavi Goel</h1>
<h2>PhD.(FnN), CDE, CPT, Health Coach</h2>
<p>
I am a woman, a dedicated dietitian, a daughter, a sister, a
daughter-in-law, a wife, and a mother. Yet, my passion for my
profession burns just as brightly. Being a national nutrition award
recipient, I bring over 17 years of valuable experience to the table.
I take immense joy in counseling individuals, and enlightening them
about trustworthy nutrition. Improving the quality of life for every
person I encounter feels like my life's mission.
</p>
<p>
I am a devoted and national nutrition award winner dietitian, driven
by an enduring passion for my profession bearing over 17 years of
invaluable expertise. Guiding individuals towards reliable nutrition
brings me immense joy, and I see it as my life's mission to enhance
their quality of life.
</p>
<p>
Throughout my journey, I've been honored to address prestigious
national and international platforms, including IOCL, Bharat
Petroleum, Income Tax Bar Association, Supreme Court of India, Delhi
Police Association, PwC, Dell India, and Grey Orange. Organizing
awareness camps in collaboration with companies like GSK, Sanofi, Eli
Lilly, and Apollo Hospitals has been a privilege. In recent years, my
focus has shifted towards empowering individuals with diabetes,
leading to my roles as a Diabetes Educator and Insulin Pump Trainer
with Curefit, Sugarfit, and Fitterfly.
</p>
<p>
Additionally, I have a keen interest in delivering lectures within the
hospitality industry. I've had the privilege of being part of
externals under the Ministry of Tourism, further fueling my enthusiasm
for this field.
</p>
</div>
</div>
<!-- Success Stories Section -->
<!-- <section class="Successstories" id="Successstories">
<h1>Our Success Stories</h1>
<div class="wrapper">
<div class="box">
<img src="successstories/hottie.jpg" alt="Success Story 1" loading="lazy">
<p>1</p>
</div>
<div class="box">
<img src="successstories/cuttie.jpg" alt="Success Story 2" loading="lazy">
<p>2</p>
</div>
<div class="box">
<img src="successstories/beard.jpg" alt="Success Story 3" loading="lazy">
<p>3</p>
</div>
<div class="box">
<img src="successstories/gunjan.jpg" alt="Success Story 4" loading="lazy">
<p>4</p>
</div>
<div class="box">
<img src="successstories/mann.jpg" alt="Success Story 5" loading="lazy">
<p>5</p>
</div>
<div class="box">
<img src="successstories/fatty.jpg" alt="Success Story 6" loading="lazy">
<p>6</p>
</div>
</div>
</section> -->
<div class="counter-widget">
<div class="counter-item" style="--clr: #FF6F61;">
<span class="icon">❤️</span>
<h3>Clients</h3>
<span class="counter" data-target="8600">0</span>
<p>Satisfied Clients by Results</p>
</div>
<div class="counter-item" style="--clr: #6BAED6;">
<span class="icon">⏰</span>
<h3>Seminar-Hours</h3>
<span class="counter" data-target="500">0</span>
<p>Hours of seminars on healthy diets</p>
</div>
<div class="counter-item" style="--clr: #7DCEA0;">
<span class="icon">📖</span>
<h3>Recipes</h3>
<span class="counter" data-target="200">0</span>
<p>Recipes published</p>
</div>
<div class="counter-item" style="--clr: #F4D03F;">
<span class="icon">😄</span>
<h3>Satisfaction</h3>
<span class="counter" data-target="98">0</span>
<p>Client Satisfaction Rate</p>
</div>
<div class="counter-item" style="--clr: #F39C12;">
<span class="icon">⭐</span>
<h3>Top Dietitian</h3>
<span class="counter" data-target="4.8"">0</span>
<p>One of the highest-rated dietitians</p>
</div>
</div>
<script>
</script>
<footer id="colophon" class="site-footer">
<div class="footer_inner_wrapper footer tm-bg tm-bgcolor-transparent tm-bgimage-no">
<div class="site-footer-bg-layer tm-bg-layer"></div>
<div class="site-footer-w">
<div class="footer-rows">
<div class="footer-rows-inner">
<div id="second-footer" class="sidebar-container second-footer tm-bg tm-bgcolor-custom tm-textcolor-white tm-bgimage-no" role="complementary">
<div class="second-footer-bg-layer tm-bg-layer"></div>
<div class="container tm-container-for-footer">
<div class="second-footer-inner">
<div class="row multi-columns-row">
<div class="widget-area col-xs-12 col-sm-3 col-md-3 col-lg-3 second-widget-area">
<aside id="enhancedtextwidget-10" class="widget widget_text enhanced-text-widget">
<div class="textwidget widget-text">
<div class="footerlogo">
<img width="250" height="76" class="kwayy-logo-img standardlogo" src="icons/newlogo1.webp" alt="Chhavi Goel" />
<h2 class="social_title">Follow on:</h2>
<div class="kwayy-social-links-wrapper">
<ul class="social-icons">
<li class="tm-social-facebook"><a target="_blank" href="https://facebook.com" data-tooltip="Facebook"><i class="fab fa-facebook-f"></i></a></li>
<li class="tm-social-instagram"><a target="_blank" href="https://instagram.com" data-tooltip="Instagram"><i class="fab fa-instagram"></i></a></li>
<li class="tm-social-linkedin"><a target="_blank" href="https://linkedin.com" data-tooltip="LinkedIn"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
</div>
</div>
</aside>
</div>
<div class="widget-area col-xs-12 col-sm-3 col-md-3 col-lg-3 second-widget-area">
<aside id="enhancedtextwidget-17" class="widget widget_text enhanced-text-widget">
<h3 class="widget-title">Contact Us</h3>
<div class="textwidget widget-text">
<div class="footer-whatsapp">
<div class="get_in_touch">
<a href="tel:+918826386125">
<i class="fa fa-phone" aria-hidden="true"></i> <span>+91-8826386125 </span>
</a>
<br>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true"></i> <span>[email protected]</span>
</a>
<br>
<a href="https://maps.google.com/?q=7th+Avenue+Gaur+City+1,+Greater+Noida+(West)" target="_blank">
<i class="fa fa-map-marker" aria-hidden="true"></i> <span>Our Location</span>
</a>
</div>
</div>
</div>
</aside>
</div>
<div class="widget-area col-xs-12 col-sm-6 col-md-6 col-lg-6 second-widget-area">
<aside id="enhancedtextwidget-18" class="widget widget_text enhanced-text-widget">
<h3 class="widget-title">Get In Touch</h3>
<div class="textwidget widget-text">
<div class="footer-timing">
<a>
<i class="fa fa-clock-o"></i> <span><strong>Clinic:</strong></span>
<br>
<span><strong> Mon to Fri 10:30am – 5:00pm; Sat 10:30am – 2:00pm</strong></span>
</a>
</div>
<br>
<div class="footer-timing">
<a>
<i class="fa fa-clock-o"></i> <span><strong>Support (WhatsApp/Email):</strong></span>
<br>
<span><strong> Mon to Sat 2:00am – 9:00pm</strong></span>
</a>
</div>
</div>
</aside>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="bottom-footer-text" class="bottom-footer-text tm-bottom-footer-text site-info tm-bg tm-bgcolor-darkgrey tm-textcolor-white tm-bgimage-no">
<div class="bottom-footer-bg-layer tm-bg-layer"></div>
<div class="container tm-container-for-footer">
<div class="bottom-footer-inner">
<div class="row multi-columns-row">
<div class="col-xs-12 col-sm-6 tm-footer2-left">
Chhavi Goel © 2023. All Rights Reserved.
<p>Developed by <strong><a href="https://www.linkedin.com/in/vaibhav-joshi01/" target="_blank">Vaibhav Joshi</a></strong></p>
</div>
<div class="col-xs-12 col-sm-6 tm-footer2-right">
<ul class="footer-nav-menu">
<li><a href="home.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="blog.html">blogs</a></li>
<li><a href="#">T&C</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Lazy loading of scripts -->
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/js/all.min.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script defer src="https://stackpath.bootstrapcdn.com/bootstrap/5.1.3/js/bootstrap.min.js"></script>
<script src="script.js"></script>
<script>
const counters = document.querySelectorAll('.counter');
const speed = 100; // Speed of the counting
// Function to animate the counting
const animateCounter = (counter) => {
const target = +counter.getAttribute('data-target'); // Get the target value
const increment = target / speed; // Calculate the increment step
let currentValue = 0;
const updateCounter = () => {
currentValue += increment;
if (currentValue < target) {
counter.textContent = Math.ceil(currentValue);
requestAnimationFrame(updateCounter);
} else {
counter.textContent = target;
}
};
updateCounter();
};
// Intersection Observer to start counting when in view
const observerOptions = {
threshold: 0.2 // When 20% of the counter is in view
};
const observerCallback = (entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
animateCounter(entry.target); // Start counting
observer.unobserve(entry.target); // Stop observing once animation starts
}
});
};
const observer = new IntersectionObserver(observerCallback, observerOptions);
// Observe each counter
counters.forEach(counter => {
observer.observe(counter);
});
</script>
</body>
</html>