-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
575 lines (484 loc) · 34.3 KB
/
about.html
File metadata and controls
575 lines (484 loc) · 34.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="index.css">
<!-- <link rel="stylesheet" href=""> -->
<link rel="stylesheet" href="responsiveleran.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body>
<!-- nav -->
<nav class="navbar navbar-expand-xl fixed-top">
<div class="container-fluid">
<!-- logo -->
<a class="navbar-brand text-white" href="#"><img src="images-removebg-preview.png" alt="" width="60px"><b>Eager To Learn</b></a>
<!--toggle btn -->
<button class="navbar-toggler " type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar" aria-label="Toggle navigation">
<!-- <span class="navbar-toggler-icon"></span> -->
<i class="fa-solid fa-bars toggler-icon" style="color: #ffffff;"></i>
</button>
<!-- sidbar -->
<div class="sidebar offcanvas offcanvas-start" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel">
<!-- sidebar header -->
<div class="offcanvas-header text-white border-bottom ">
<h5 class="offcanvas-title" id="offcanvasNavbarLabel"><img src="images-removebg-preview.png" alt="" width="80px"><b>Eager To Learn</b></h5>
<button type="button" class="btn-close btn-close-white shadow-none" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<!-- sidebar body -->
<div class="offcanvas-body d-flex flex-column flex-lg-row p-4 p-lg-0 ">
<ul class="navbar-nav justify-content-center align-items-center fs-5 flex-grow-1 ">
<li class="nav-item mx-2">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Courses
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Web Devlopement</a></li>
<li><a class="dropdown-item" href="#">Data Science</a></li>
<li><a class="dropdown-item" href="#">Andriod Devlopement</a></li>
<li><a class="dropdown-item" href="#">Digital Marketing</a></li>
<li><a class="dropdown-item" href="#">Graphic Designing</a></li>
<li><a class="dropdown-item" href="#">DataBase Design & Devlopement</a></li>
<li><a class="dropdown-item" href="#">Software Testing</a></li>
<li><a class="dropdown-item" href="#">Software Devlopement Tools</a></li>
<li><a class="dropdown-item" href="#">No - Code Devlopement</a></li>
<li><a class="dropdown-item" href="#">Internet Of Things (IOT)</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Languages
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">English</a></li>
<li><a class="dropdown-item" href="#">Hindi</a></li>
<li><a class="dropdown-item" href="#">Tamil</a></li>
<li><a class="dropdown-item" href="#">Bangoli</a></li>
<li><a class="dropdown-item" href="#">French</a></li>
<li><a class="dropdown-item" href="#">German</a></li>
</ul>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="service.html">Services</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</ul>
<!-- login/ Sign up -->
<!-- <div class="d-flex flex-column flex-lg-row justify-content-center align-items-center gap-3">
<a href="#" class="login text-white text-decoration-none px-3 py-1 rounded-4">Login</a>
<a href="#" class="sign text-white text-decoration-none px-3 py-1 rounded-4" style="background-color: #f94ca4;">Sign Up</a>
</div> -->
<!-- <form class="d-flex mt-3" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form> -->
</div>
</div>
</div>
</nav>
<!-- nav -->
<div id="carouselExample" class="carousel slide">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="brooke-cagle-g1Kr4Ozfoac-unsplash.jpg" class="d-block w-100" alt="..." width="100%" height="730px">
</div>
<div class="carousel-item">
<img src="campaign-creators-gMsnXqILjp4-unsplash.jpg" class="d-block w-100" alt="..." width="100%" height="730px">
</div>
<div class="carousel-item">
<img src="tim-van-der-kuip-CPs2X8JYmS8-unsplash.jpg" class="d-block w-100" alt="..." width="100%" height="730px">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExample" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExample" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- About us -->
<div class="container text-center mt-5">
<h2 class="fw-bolder">About Eager To Learn</h2>
<div class="line rounded-circle mx-auto" style="width: 170px ;height:5px;"></div>
</div>
<div class="container mt-5 pt-4">
<div class="row">
<p>In the vast landscape of online education, Eager To Learn emerged two years ago as a promising contender, aiming to revolutionize the way individuals engage with learning. Over this span of time, it has undergone a remarkable evolution, adapting to challenges, integrating feedback, and refining its offerings. Let's embark on a journey through the pivotal phases that shaped Eager To Learn into what it is today.</p>
</div>
<div class="row mt-5">
<div class="col col-12 col-sm-12 col-md-6 col-lg-4 g-3">
<div class="point1">
<h4 class="phase">Phase 1: Conception and Foundation (Year 1)</h4>
<hr>
<p>At its inception, Eager To Learn began with a vision to democratize education, making quality learning accessible to anyone, anywhere. The founding team meticulously laid the groundwork, establishing core principles centered around user-centric design, personalized learning paths, and fostering a vibrant learning community. Initial courses were curated to cover a diverse array of topics, catering to learners of all levels and interests.</p>
<hr>
</div>
</div>
<div class="col col-12 col-sm-12 col-md-6 col-lg-4 g-3">
<div class="point1">
<h4 class="phase">Phase 2: Expansion and Innovation (Year 2)</h4>
<hr>
<p>As Eager To Learn gained traction, it embarked on a journey of expansion and innovation, driven by a commitment to staying at the forefront of educational technology. Leveraging data analytics and machine learning, the platform personalized learning experiences, tailoring recommendations and assessments to individual learner preferences and proficiency levels. Furthermore, strategic partnerships were forged with industry leaders and academic content and certifications.</p>
<hr>
</div>
</div>
<div class="col col-12 col-sm-12 col-md-6 col-lg-4 g-3">
<div class="point1">
<h4 class="phase">Phase 3: Consolidation and Impact (Present)</h4>
<hr>
<p>As Eager To Learn celebrates its two-year anniversary, it reflects on its journey of growth, innovation, and impact. With millions of learners worldwide and a robust ecosystem of educators and partners, the platform continues to empower individuals to pursue their passions, advance their careers, and effect positive change in society. Looking ahead, Eager To Learn remains committed to its mission of fostering lifelong learning and shaping the future of education.</p>
<hr>
</div>
</div>
</div>
</div>
<!-- Placed -->
<div class="container text-center mt-5 pt-4">
<h2 class="fw-bolder">Our 400+ Students Placed Till Now</h2>
<div class="line rounded-circle mx-auto" style="width: 170px ;height:5px;"></div>
</div>
<div class="container mt-5 pt-4">
<div class="row">
<div class="col col-12 col-sm-12 col-md-5 col-lg-6 g-3">
<h3 ><b>Integrated Solutions</b></h3>
<p>We’re the only learning partner you need to deliver impactful programs to your entire organization.</p>
<div class="btn btn-primary">Learn More</div>
</div>
<div class="col col-12 col-sm-12 col-md-5 col-lg-6 g-3">
<img src="elements-of-learning-ecosystem.png" alt="" class="img-fluid rounded-4">
</div>
</div>
</div>
<!-- Key Points -->
<div class="container text-center mt-5 ">
<h2 class="fw-bolder">Key Features Of Eager To Learn</h2>
<div class="line rounded-circle mx-auto" style="width: 170px ;height:5px;"></div>
</div>
<div class="container mt-5 pt-5">
<div class="row text-center">
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="point2">
<i class="fa-regular fa-pen-to-square icon1" style="color: #274e8b;"></i>
<h4 class="fw-semibold">Learning content management</h4>
<ol class="text-start list">
<li>Support of multilingual content.</li>
<li>Support of multiple content types (e.g., text, audio, images, video, animation, VR).</li>
<li>User-generated content.
</li>
<li>Structured storage of learning materials.</li>
<li>Course creation tools.</li>
<li>Learning content search by titles, metadata and full-text.</li>
</ol>
</div>
</div>
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="point2">
<i class="fa-solid fa-graduation-cap icon1" style="color: #FFD43B;"></i>
<h4 class="fw-semibold">Learning content delivery</h4>
<ol class="text-start list">
<li>Multi-device access for learners, trainers and managers.</li>
<li>Learner self-registration via online admission forms.</li>
<li>AI-driven personalized learning paths.</li>
<li>Managing electronic certificates on course completion.</li>
</ol>
</div>
</div>
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="point2">
<i class="fa-solid fa-chart-simple icon1" style="color: #63E6BE;"></i>
<h4 class="fw-semibold">Analytics and reporting </h4>
<ol class="text-start list">
<li>AI-based content recommendations and tips for learners.</li>
<li>Learning history and progress.</li>
<li>Learners' feedback gathering.</li>
<li>Dashboards on learning content usage, portal usage, time spent on courses, learners’ performance and satisfaction, and more for trainers and managers.</li>
</ol>
</div>
</div>
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="point2">
<i class="fa-solid fa-people-roof icon1" style="color: #74C0FC;"></i>
<h4 class="fw-semibold">Communication and social learning
</h4>
<ol class="text-start list">
<li>Discussion boards.</li>
<li>Chats</li>
<li>Forums. </li>
<li>DLearning communities.</li>
<li>Interactions with eLearning content via likes, shares, comments.
</li>
</ol>
</div>
</div>
</div>
</div>
<!-- parterns -->
<div class="container text-center mt-5">
<h2 class="fw-bolder">Our Partners</h2>
<div class="line rounded-circle mx-auto" style="width: 170px ;height:5px;"></div>
</div>
<div class="container-fluid companys mt-5 pt-4">
<h3 class="text-center">We collaborate with <b>15+</b> companies with the <b>AIM</b> of <b>Educate Everyone</b></h3>
<marquee behavior="scroll" direction="" class="big">
<img src="Adobe Inc. A.png" alt="" width="150px">
<img src="Cisco Systems.png" alt="" width="150px">
<img src="PhonePe.png" alt="" width="200px">
<img src="PayPal New 2023.png" alt="" width="200px">
<img src="icons8-ibm-480.png" alt="" width="120px">
<img src="Byjus.png" alt="" width="150px">
<img src="Dell.png" alt="" width="150px">
<img src="asset_2-removebg-preview.png" alt="" width="150px">
<img src="Walmart-removebg-preview.png" alt="" width="220px">
<img src="icons8-fedex-480.png" alt="" width="150px">
<img src="Netflix Wordmark.png" alt="" width="150px">
<img src="HP 2012.png" alt="" width="100px">
</marquee>
</div>
<!-- Reviews -->
<div class="container text-center mt-5">
<h2 class="fw-bolder">Students Reviews</h2>
<div class="line rounded-circle mx-auto" style="width: 170px ;height:5px;"></div>
</div>
<div class="container-fluid mt-5 pt-3">
<div class="row">
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="book ">
<h6><img src="google-logo-9808.png" alt="" width="50px"> Amit Tandon</h6>
<h5>Rating 5/5
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i> </h5>
<p class="overflow-auto">I recently completed the business analyst course provided by 4achievers and I am very pleased with the quality of the course. The instructors were knowledgeable and engaging. The exercises and case studies gave me a better understanding of business analysis concepts. The course was comprehensive and covered all the topics related to business analysis. I also liked the flexibility of the course, I was able to study at my own pace and the course was available 24/7. Overall, I found the course to be very helpful and I would highly recommend it to anyone looking to become a business analyst.</p>
<div class="cover">
<img src="front-view-male-student-wearing-black-backpack-holding-copybooks-files-blue-wall.jpg" width="100%" height="100%" class="radius1" alt="">
</div>
</div>
</div> <!-- col -->
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="book ">
<h6><img src="google-logo-9808.png" alt="" width="50px"> Kavita Joshi</h6>
<h5>Rating 4.9/5
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-regular fa-star-half-stroke" style="color: #FFD43B;"></i>
</h5>
<p class="overflow-auto">I recently completed the Business Analyst course provided by 4achievers and I must say that it was an amazing experience. The course material was comprehensive, up-to-date and presented in an interesting way. The course instructor had an in-depth knowledge of the subject and was able to explain the concepts in a simple manner. The class activities and group discussions were quite engaging and informative. Overall, I had a great learning experience and would highly recommend this course to anyone who wants to learn more about the business analyst role. Thanks 4achievers for providing such an enriching learning experience</p>
<div class="cover">
<img src="red-haired-lady-eyeglasses-holds-books-shows-ok-sign.jpg" width="100%" height="100%" class="radius1" alt="">
</div>
</div>
</div> <!-- col -->
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="book ">
<h6><img src="google-logo-9808.png" alt="" width="50px"> Anuj Jain</h6>
<h5>Rating 5/5
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i> </h5>
<p class="overflow-auto">The ETL Testing course provided by 4achievers is a great way to learn the basics of ETL Testing. It covers the fundamentals of this important testing process, as well as various tools and techniques that are used in the field. The course also includes hands-on activities and practice exercises which make it easier to understand the concepts. The instructors are very knowledgeable and helpful in answering any questions I had. I found the course to be very informative and helpful in preparing me for the actual ETL Testing process. I would definitely recommend this course to anyone looking to get into ETL Testing.</p>
<div class="cover">
<img src="smiling-happy-indian-student-with-backpack-pointing-his-finger-wall.jpg" width="100%" height="100%" class="radius1" alt="">
</div>
</div>
</div> <!-- col -->
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="book ">
<h6><img src="google-logo-9808.png" alt="" width="50px"> Sushila Gupta</h6>
<h5>Rating 4.9/5
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-regular fa-star-half-stroke" style="color: #FFD43B;"></i>
</h5>
<p class="overflow-auto">I recently completed the Data Mining With Python course provided by 4achievers. This course has been extremely helpful in my understanding of data mining and the various tools used for data mining. </p>
<div class="cover">
<img src="happy-young-female-student-holding-notebooks-from-courses-smiling-camera-standing-spring-clothes-against-blue-background.jpg" width="100%" height="100%" class="radius1" alt="">
</div>
</div>
</div> <!-- col -->
</div>
</div><!-- row -->
<div class="container-fluid mt-5 pt-3">
<div class="row">
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="book ">
<h6><img src="google-logo-9808.png" alt="" width="50px"> Amit Tandon</h6>
<h5>Rating 5/5
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i> </h5>
<p class="overflow-auto">I recently completed the business analyst course provided by 4achievers and I am very pleased with the quality of the course. The instructors were knowledgeable and engaging. The exercises and case studies gave me a better understanding of business analysis concepts. The course was comprehensive and covered all the topics related to business analysis. I also liked the flexibility of the course, I was able to study at my own pace and the course was available 24/7. Overall, I found the course to be very helpful and I would highly recommend it to anyone looking to become a business analyst.</p>
<div class="cover">
<img src="young-man-student-with-notebooks-showing-thumb-up-approval-smiling-satisfied-blue-studio-background.jpg" width="100%" height="100%" class="radius1" alt="">
</div>
</div>
</div> <!-- col -->
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="book ">
<h6><img src="google-logo-9808.png" alt="" width="50px"> Kavita Joshi</h6>
<h5>Rating 4.9/5
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-regular fa-star-half-stroke" style="color: #FFD43B;"></i>
</h5>
<p class="overflow-auto">I recently completed the Business Analyst course provided by 4achievers and I must say that it was an amazing experience. The course material was comprehensive, up-to-date and presented in an interesting way. The course instructor had an in-depth knowledge of the subject and was able to explain the concepts in a simple manner. The class activities and group discussions were quite engaging and informative. Overall, I had a great learning experience and would highly recommend this course to anyone who wants to learn more about the business analyst role. Thanks 4achievers for providing such an enriching learning experience</p>
<div class="cover">
<img src="waist-up-shot-pretty-girl-smiles-pleasantly.jpg" width="100%" height="100%" class="radius1" alt="">
</div>
</div>
</div> <!-- col -->
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="book ">
<h6><img src="google-logo-9808.png" alt="" width="50px"> Anuj Jain</h6>
<h5>Rating 5/5
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i> </h5>
<p class="overflow-auto">The ETL Testing course provided by 4achievers is a great way to learn the basics of ETL Testing. It covers the fundamentals of this important testing process, as well as various tools and techniques that are used in the field. The course also includes hands-on activities and practice exercises which make it easier to understand the concepts. The instructors are very knowledgeable and helpful in answering any questions I had. I found the course to be very informative and helpful in preparing me for the actual ETL Testing process. I would definitely recommend this course to anyone looking to get into ETL Testing.</p>
<div class="cover">
<img src="portrait-hispanic-college-student-carrying-backpack-standing-school-hallway.jpg" width="100%" height="100%" class="radius1" alt="">
</div>
</div>
</div> <!-- col -->
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<div class="book ">
<h6><img src="google-logo-9808.png" alt="" width="50px"> Sushila Gupta</h6>
<h5>Rating 4.9/5
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-solid fa-star" style="color: #FFD43B;"></i>
<i class="fa-regular fa-star-half-stroke" style="color: #FFD43B;"></i>
</h5>
<p class="overflow-auto">I recently completed the Data Mining With Python course provided by 4achievers. This course has been extremely helpful in my understanding of data mining and the various tools used for data mining. </p>
<div class="cover">
<img src="portrait-satisfied-young-asian-woman-holding-cup-coffee-laptop-computer-while-walking-looking-camera-gray-background.jpg" width="100%" height="100%" class="radius1" alt="">
</div>
</div>
</div> <!-- col -->
</div>
</div><!-- row -->
<!-- webinars -->
<div class="container text-center mt-5">
<h2 class="fw-bolder">Webinars We Conduct</h2>
<div class="line rounded-circle mx-auto" style="width: 170px ;height:5px;"></div>
</div>
<div class="container mt-5 pt-4">
<div class="row">
<div class="col col-12 col-sm-12 col-md-5 g-2">
<!-- <p>Join us for an exclusive webinar as we commemorate two years of Learning Platform X's journey in revolutionizing online education. Discover the milestones, innovations, and impact that have shaped the platform's evolution and empowered learners worldwide. From its inception to its present achievements, this webinar offers insights into the transformative power of education and technology. Be inspired by success stories, learn about future initiatives, and engage with industry experts and community members in celebrating this remarkable milestone.</p> -->
<p>Join us for an engaging webinar on Full Stack Development where you'll delve into the world of building robust web applications from both front-end and back-end perspectives. Whether you're an aspiring developer or a seasoned professional looking to broaden your skillset, this webinar promises valuable insights and practical knowledge.</p>
<ol>
<li><b>Introduction to Full Stack Development:</b> Understand the concept of Full Stack Development and its importance in today's tech landscape.</li>
<li><b>Front-End Technologies:</b> Explore front-end technologies such as HTML, CSS, and JavaScript, and learn how to create captivating user interfaces.</li>
<li><b>Back-End Technologies:</b> Delve into back-end technologies including server-side scripting languages like Node.js, Python, or Ruby, and databases like SQL and NoSQL.</li>
<li><b>Building a Full Stack Application:</b> Get hands-on experience in building a complete web application from scratch, covering both front-end and back-end components.</li>
<!-- <li><b>Best Practices and Tools:</b> Discover best practices for Full Stack Development and familiarize yourself with essential tools and frameworks like React, Angular, Express, and Flask.</li> -->
</ol>
<!-- <h6>Who Should Attend:</h6>
<ul>
<li>Aspiring Developers</li>
<li>Software Engineers</li>
<li>Web Developers</li>
<li>Tech Enthusiasts</li>
</ul> -->
<div class="cetr text-center">
<h4><b>Register here through Scanner below:</b></h4>
<img src="https://img.freepik.com/free-vector/characters-scanning-qr-codes-their-phones_23-2148616039.jpg?w=740&t=st=1712655666~exp=1712656266~hmac=066c0eeb2e724c191ec0e315f92a37ae87c36f916ef5c4ed9eadbe29284c34fb" alt="" width="200px" class="text-center rounded-circle">
</div>
</div>
<div class="col col-12 col-sm-12 col-md-7 col-lg-6">
<div class="row gap-3">
<div class="col col-12 ">
<img src="1685942908368.jpeg" alt="" class="img-fluid rounded-3">
</div>
<div class="col col-12 d-sm-none d-none d-md-flex d-lg-none">
<img src="1600w-scVebwNS-5I.webp" alt="" class="img-fluid rounded-3">
</div>
<div class="col col-12 d-none d-md-flex d-lg-none">
<img src="1685698714759.jpeg" alt="" class="img-fluid rounded-3">
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container-fluid end">
<div class="row text-center">
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 g-3">
<h3>Eager To Learn</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. At aut, aliquid aliquam earum sequi sit inventore fugit repellendus, quo optio voluptatem asperiores blanditiis dicta corporis, deleniti voluptas obcaecati minus laboriosam.</p>
</div>
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 yash-Products g-3">
<h3>Expertise In</h3>
<p><a href="#" class="text-white text-decoration-none" >Full Stack Devlopement</a></p>
<p><a href="#" class="text-white text-decoration-none" >Cyber Security</a></p>
<p><a href="#" class="text-white text-decoration-none" >AI Devlopement</a></p>
<p><a href="#" class="text-white text-decoration-none" >Big Data Analytics</a></p>
</div>
<div class="col col-12 col-sm-12 col-md-6 col-lg-3 yash-Products g-3">
<h3>Centers</h3>
<p><a href="#" class="text-white text-decoration-none" >Noida</a></p>
<p><a href="#" class="text-white text-decoration-none" >Dehradun</a></p>
<p><a href="#" class="text-white text-decoration-none" >Delhi</a></p>
<p><a href="#" class="text-white text-decoration-none" >Mumbai</a></p>
</div>
<div class="col col-12 pb-3 col-sm-12 col-sm-pb-3 col-md-6 col-lg-3 g-3">
<h3>FOLLOW US</h3>
<div class="ic text-center">
<a class="socialContainer containerOne" href="https://instagram.com/" target="_blank">
<svg viewBox="0 0 16 16" class="socialSvg instagramSvg"> <path d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z"></path> </svg>
</a>
<a class="socialContainer containerTwo" href="https://twitter.com/" target="_blank">
<svg viewBox="0 0 16 16" class="socialSvg twitterSvg"> <path d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z"></path> </svg> </a>
<a class="socialContainer containerThree" href="https://in.linkedin.com/" target="_blank">
<svg viewBox="0 0 448 512" class="socialSvg linkdinSvg"><path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"></path></svg>
</a>
<a class="socialContainer containerFour" href="https://whatsapp.com/" target="_blank">
<svg viewBox="0 0 16 16" class="socialSvg whatsappSvg"> <path d="M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.898 7.898 0 0 0 13.6 2.326zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.557 6.557 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.729.729 0 0 0-.529.247c-.182.198-.691.677-.691 1.654 0 .977.71 1.916.81 2.049.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z"></path> </svg>
</a>
</div>
</div>
</div>
</div>
<div class="end2 p-3">
<div class=" container-fluid text-center">
<p>Copyright © 2024 <a class="y-blnk" href="" target="_blank">Eager To Learn</a> All Right Resereved</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer -->
</body>
</html>