-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1510 lines (1412 loc) · 55.6 KB
/
Copy pathindex.html
File metadata and controls
1510 lines (1412 loc) · 55.6 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
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
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>S.S. Tutorial's</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description"
content="S.S. Tutorial's, S S Tutorials Bandra West, Best Coaching Class in the category of Education in Mumbai. This well-known establishment acts as a one-stop destination servicing both local and from other parts of Mumbai. In the near future, this business aims to expand its line of products and services and cater to a larger client base. In Mumbai, this establishment occupies a prominent location in Bandra West. It is an effortless task in commuting to this establishment as there are various modes of transport readily available. It is at Waroda Road, Off Hill Road, Near KCA Hall, or near to Holy family hospital Bandra West, Mumbai 50 which makes it easy for first-time visitors in locating this establishment. It is known to provide top service in the following categories: Tutorials For Class SSC, HSC(Sci, Com & Arts), Tutorials For Class 8th Tutorials For Class 9th also available">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel=icon type="image/ico" href="images/logo.png" />
<link rel="stylesheet" type="text/css" href="styles/bootstrap4/bootstrap.min.css">
<link href="plugins/fontawesome-free-5.0.1/css/fontawesome-all.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="plugins/OwlCarousel2-2.2.1/owl.carousel.css">
<link rel="stylesheet" type="text/css" href="plugins/OwlCarousel2-2.2.1/owl.theme.default.css">
<link rel="stylesheet" type="text/css" href="plugins/OwlCarousel2-2.2.1/animate.css">
<link rel="stylesheet" type="text/css" href="styles/main_styles.css">
<link rel="stylesheet" type="text/css" href="styles/responsive.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script charset="utf-8" type="text/javascript" src="https://js-eu1.hsforms.net/forms/shell.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NF6B1JHE19"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-NF6B1JHE19');
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://blog.sstutorial.com/2020/04/ss-tutorial-bandra.html"
},
"headline": "SS TUTORIAL BANDRA WEST, MUMBAI",
"description": "SS TUTORIAL BANDRA WEST, Best coaching class in Mumbai, Happy to serve Bandroits and Mumbaikars.",
"image": "https://2.bp.blogspot.com/-xkB1ZiHE3Fs/XpGrW_-7CEI/AAAAAAAAAAc/20W1K3whBbMkgda0Gl14HT4yw_JESeV0gCK4BGAYYCw/s1600/sst_logo.png",
"author": {
"@type": "Organization",
"name": "SS TUTORIAL"
},
"publisher": {
"@type": "Organization",
"name": "SS TUTORIAL",
"logo": {
"@type": "ImageObject",
"url": "https://sstutorial.com/images/logo.png"
}
},
"datePublished": "2021-04-03",
"dateModified": "2021-04-03"
}
</script>
</head>
<body>
<div class="super_container">
<!-- Header -->
<header class="header d-flex flex-row">
<div class="header_content d-flex flex-row align-items-center">
<!-- Logo -->
<div class="logo_container">
<div class="logo animated swing faster">
<img src="images/logo.png" alt="S.S. Tutorial's">
<span>S.S. Tutorial's</span>
<img src="images/logo.png" alt="S.S. Tutorial's" style="transform: rotateY(180deg);">
</div>
</div>
<!-- Main Navigation -->
<nav class="main_nav_container">
<div class="main_nav">
<ul class="main_nav_list">
<li class="main_nav_item"><a href="/">home</a></li>
<li class="main_nav_item"><a href="/about-us">about us</a></li>
<li class="main_nav_item"><a href="/contact">contact</a></li>
<li class="main_nav_item"><a href="https://blog.sstutorial.com/">blog</a></li>
</ul>
</div>
</nav>
</div>
<div class="header_side d-flex flex-row justify-content-center align-items-center">
<img src="images/phone-call.svg" alt="">
<span><span><a href="tel:+919821121982">+91 9821121982</a></span> <span><a href="tel:+919821112139">+91
9821112139</a></span></span>
</div>
<!-- Hamburger -->
<div class="hamburger_container">
<i class="fas fa-bars trans_200"></i>
</div>
</header>
<!-- Menu -->
<div class="menu_container menu_mm">
<!-- Menu Close Button -->
<div class="menu_close_container">
<div class="menu_close"></div>
</div>
<!-- Menu Items -->
<div class="menu_inner menu_mm">
<div class="menu menu_mm">
<ul class="menu_list menu_mm">
<li class="menu_item menu_mm"><a href="/">Home</a></li>
<li class="menu_item menu_mm"><a href="/about-us">About us</a></li>
<li class="menu_item menu_mm"><a href="/contact">Contact</a></li>
<li class="menu_item menu_mm"><a href="https://blog.sstutorial.com/">Blog</a></li>
</ul>
<!-- Menu Social -->
<div class="menu_social_container menu_mm">
<ul class="menu_social menu_mm">
<li class="menu_social_item menu_mm"><a
href="https://www.linkedin.com/in/sstutorial-bandra-west-20874b20a"><i
class="fab fa-linkedin-in"></i></a></li>
<li class="menu_social_item menu_mm"><a
href="https://www.instagram.com/sstutorialsbandrawest/"><i
class="fab fa-instagram"></i></a></li>
<li class="menu_social_item menu_mm"><a
href="https://www.facebook.com/sstutorials.bandrawest"><i
class="fab fa-facebook-f"></i></a></li>
<li class="menu_social_item menu_mm"><a href="https://twitter.com/SstutorialsW"><i
class="fab fa-twitter"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Home -->
<div class="home">
<!-- Hero Slider -->
<div class="hero_slider_container">
<div class="hero_slider owl-carousel">
<!-- Hero Slide -->
<div class="hero_slide">
<div class="hero_slide_background" style="background-image:url(images/slider_background.jpg)">
</div>
<div class="hero_slide_container d-flex flex-column align-items-center justify-content-center">
<div class="hero_slide_content text-center">
<h1 data-animation-in="fadeInUp" data-animation-out="animate-out fadeOut">Get your
<span>Education</span> today!
</h1>
</div>
</div>
</div>
<div class="hero_slide">
<div class="hero_slide_background"
style="background-image:url(images/students/sst-banner4.jpeg); background-size: 85% auto;">
</div>
</div>
<div class="hero_slide">
<div class="hero_slide_background">
<img src="images/students/sst-banner1.jpeg" class="banner-logo">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonials -->
<div class="testimonials page_section">
<div class="testimonials_background_container prlx_parent">
<div class="testimonials_background prlx" style="background-image:url(images/course_5.jpg)"></div>
</div>
<div class="container">
<div class="row">
<div class="col">
<div class="section_title text-center">
<h1>What our students say</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-10 offset-lg-1">
<div class="testimonials_slider_container">
<!-- Testimonials Slider -->
<div class="owl-carousel owl-theme testimonials_slider">
<!-- Testimonials Item -->
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">The staff of SS TUTORIALS taught me not to study for
earning but for learning. They made me realize that education is not the
learning of fact but the training of mind to explore, think and have
experiences. They told me that today is what I will be tomorrow. They were the
teachers who taught us by inspiring us with a desire to learn. They inspired me
to help my own self in order to become successful . I am very grateful for
having such teachers in my life who not only focused on my academic achievements
but also my all round development.
Thank you very much. I will never forget their contributions in my life and
career</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/anshika-tiwari.jpeg" alt="anshika-tiwari">
</div>
<div class="testimonial_name">Anshika Tiwari</div>
<div class="testimonial_title">SSC Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">The learning environment in SS Tutorial is really very
good. The teachers there are very friendly and helpful.
It was a wonderful experience learning in such an environment where the teachers
go out of the way to help the students understand.
SS TUTORIAL IS ONE OF THE BEST COACHING CLASSES IN BANDRA❤️</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/rebeca-baptista.jpeg" alt="rebeca-baptista">
</div>
<div class="testimonial_name">Rebeca Baptista</div>
<div class="testimonial_title">SSC, HSC (Com.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">One of the best places you can find peace of mind and a
playful heart to study is ss tutorials. Unlike other tution classes where they
pressurise you to just mug up all the answers and just vomit at the examination,
here in ss you understand all the concepts and not only gain educational
knowledge but also the wisdom needed to live a better life.
The teaching staff here at ss is more like friends explaining you, solving your
doubts and accompanying you towards success. All I can say is that SS tutorials
is the best classes you can enroll in.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/melvin-dsouza.jpeg" alt="melvin-dsouza">
</div>
<div class="testimonial_name">Melvin D'souza</div>
<div class="testimonial_title">SSC, HSC (Com.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">Extremely good faculty team.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/jonah-dais.jpeg" alt="jonah-dais">
</div>
<div class="testimonial_name">Jonah Dais</div>
<div class="testimonial_title">SSC, HSC (Com.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">It was really a good experience to be a student of S.S
tutorials. The professors not only focus on teaching but also towards the
development of the student. I had a great experience being there for almost
three year's the teaching procces was so excellent that I never faced any
difficulties in my studies. Would highly recommend S.S tutorials. Thank you.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/aatish-desale.jpeg" alt="aatish-desale">
</div>
<div class="testimonial_name">Aatish Desale</div>
<div class="testimonial_title">SSC, HSC (Sci.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">Home away from home. A place where learning takes an
interesting twist, you don't realise how much u have learnt because it all feels
like child's play. S.S. Tutorials taught me that, it's not just about the hours
you spent staring at a book, true education is when you grow as a person and
learn to apply your knowledge in every aspect in life. The faculty is another
family. I have made special bonds not only with my career but also with great
mentors. S.S. Tutorials changed the way I looked at life for the better.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/sybil-fernandes.jpeg" alt="sybil-fernandes">
</div>
<div class="testimonial_name">Sybil Fernandes</div>
<div class="testimonial_title">SSC, HSC (Sci.) Student</div>
</div>
</div>
</div>
<!-- Testimonials Item -->
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">The professors at SS Tutorials are very well versed and
have good knowledge in the subject.All the concepts are simplified and very well
explained with relevant examples. Overall SS Tutorials is a great coaching
class.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/neha-solanki.jpeg" alt="neha-solanki">
</div>
<div class="testimonial_name">Neha Solanki</div>
<div class="testimonial_title">SSC, HSC (Sci.) Student</div>
</div>
</div>
</div>
<!-- Testimonials Item -->
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">This tutorial has a good education system and
facilities available and the Professors and teachers are too friendly here
😁🙏🏻</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/raj-dubey.jpeg" alt="raj-dubey">
</div>
<div class="testimonial_name">Raj Dubey</div>
<div class="testimonial_title">SSC Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">It's a great place to study Arts Science and Commerce
and Do research.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/rachel-dhonde-1.jpeg" alt="rachel-dhonde">
</div>
<div class="testimonial_name">Rachel Dhonde</div>
<div class="testimonial_title">HSC (Sci.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">Teachers are amazing. There are many extra curricular
activities were the students can participate and earn different skills and gain
knowledge.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/rahul-chintal.jpeg" alt="rahul-chintal">
</div>
<div class="testimonial_name">Rahul Chintal</div>
<div class="testimonial_title">HSC (Com.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">Very disciplined.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/roveena-dhonde.jpeg" alt="roveena-dhonde">
</div>
<div class="testimonial_name">Roveena Dhonde</div>
<div class="testimonial_title">HSC (Sci.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">A good place to study and hangout.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/saad-naik-1.jpeg" alt="saad-naik">
</div>
<div class="testimonial_name">Saad Naik</div>
<div class="testimonial_title">HSC (Sci.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">Really very helpful management and teachers.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/pooja-chintal.jpeg" alt="pooja-chintal">
</div>
<div class="testimonial_name">Pooja Chintal</div>
<div class="testimonial_title">HSC (Sci.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">Excellent overall development of the student.</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/pradnya-valanju.jpeg" alt="pradnya-valanju">
</div>
<div class="testimonial_name">Pradnya Valanju</div>
<div class="testimonial_title">HSC (Sci.) Student</div>
</div>
</div>
</div>
<div class="owl-item">
<div class="testimonials_item text-center">
<div class="quote">“</div>
<p class="testimonials_text">A very old and good reputed coaching class in bandra.
</p>
<div class="testimonial_user">
<div class="testimonial_image mx-auto">
<img src="images/students/rachel-baptista.jpeg" alt="rachel-baptista">
</div>
<div class="testimonial_name">Rachel Baptista</div>
<div class="testimonial_title">HSC (Com.) Student</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Services -->
<div class="services sst-services page_section">
<div class="container">
<div class="row">
<div class="col">
<div class="section_title text-center">
<h1>Our Services</h1>
</div>
</div>
</div>
<div class="row services_row">
<div class="col-lg-4 service_item text-left d-flex flex-column align-items-start justify-content-start">
<div class="icon_container d-flex flex-column justify-content-end">
<img src="images/professor.svg" alt="">
</div>
<h3>Specialised Faculties</h3>
<p>Tutorials For Class SSC, HSC(Sci, Com & Arts), Tutorials For Class 8th Tutorials For Class
9th faculties are available.</p>
</div>
<div class="col-lg-4 service_item text-left d-flex flex-column align-items-start justify-content-start">
<div class="icon_container d-flex flex-column justify-content-end">
<img src="images/exam.svg" alt="">
</div>
<h3>Progressive Tests</h3>
<p>Regular chapter-wise, organized MCQ with subjective Tests both physical and digitally.</p>
</div>
<div class="col-lg-4 service_item text-left d-flex flex-column align-items-start justify-content-start">
<div class="icon_container d-flex flex-column justify-content-end">
<img src="images/books.svg" alt="">
</div>
<h3>Batch System</h3>
<p>We have a small batch (5-10 students) and a batch of 10-25 students.</p>
</div>
<div class="col-lg-4 service_item text-left d-flex flex-column align-items-start justify-content-start">
<div class="icon_container d-flex flex-column justify-content-end">
<img src="images/milestone_4.svg" alt="">
</div>
<h3>Feedbacks & Doubt solving</h3>
<p>Our faculties members are always present professionally for solving the doubts and queries of
our students.</p>
</div>
<div class="col-lg-4 service_item text-left d-flex flex-column align-items-start justify-content-start">
<div class="icon_container d-flex flex-column justify-content-end">
<img src="images/earth-globe.svg" alt="">
</div>
<h3>Smooth Faster Tips & Tricks</h3>
<p>We make the topic easier by adding simple concepts and visualization for our students and
make them stressless.</p>
</div>
</div>
</div>
</div>
<div class="events page_section">
<div class="container">
<div class="row">
<div class="col">
<div class="section_title text-center">
<h1>Toppers</h1>
</div>
</div>
</div>
<div class="event_items">
<!-- Event Item -->
<div class="row event_item">
<div class="col troopers">
<ul>
<li>
<button data-template="gargi-chaurasiya">
<img src="images/students/gargi-chaurasiya.jpg" alt="gargi-chaurasiya" height="100"
width="100">
<div style="display: none;">
<div id="gargi-chaurasiya">
<strong>Gargi S Chaurasiya</strong> <br> SSC 84.40% in 2024-25
</div>
</div>
</button>
</li>
<li>
<button data-template="dilesha-raut">
<img src="images/students/dilesha-raut.jpg" alt="dilesha-raut" height="100"
width="100">
<div style="display: none;">
<div id="dilesha-raut">
<strong>Dilesha N Raut</strong> <br> SSC 84.20% in 2024-25
</div>
</div>
</button>
</li>
<li>
<button data-template="larissa-dsouza">
<img src="images/students/larissa-dsouza.jpg" alt="larissa-dsouza" height="100"
width="100">
<div style="display: none;">
<div id="larissa-dsouza">
<strong>Larissa Dsouza</strong> <br> SSC 80% in 2024-25
</div>
</div>
</button>
</li>
<li>
<button data-template="srushti-surve">
<img src="images/students/srushti-surve.jpg" alt="srushti-surve" height="100"
width="100">
<div style="display: none;">
<div id="srushti-surve">
<strong>Srushti Surve</strong> <br> SSC 91.60% in 2023-24
</div>
</div>
</button>
</li>
<li>
<button data-template="jeanne-mendonca">
<img src="images/students/jeanne-mendonca.jpg" alt="jeanne-mendonca" height="100"
width="100">
<div style="display: none;">
<div id="jeanne-mendonca">
<strong>Jeanne Mendonca</strong> <br> SSC 88.60% in 2023-24
</div>
</div>
</button>
</li>
<li>
<button data-template="mysa-khan">
<img src="images/students/mysa-khan.jpg" alt="mysa-khan" height="100"
width="100">
<div style="display: none;">
<div id="mysa-khan">
<strong>Mysa Khan</strong> <br> SSC 85.60% in 2023-24
</div>
</div>
</button>
</li>
<li>
<button data-template="yogi-rathod">
<img src="images/students/yogi-rathod.jpg" alt="yogi-rathod" height="100"
width="100">
<div style="display: none;">
<div id="yogi-rathod">
<strong>Yogi Rathod</strong> <br> SSC 81.80% in 2023-24
</div>
</div>
</button>
</li>
<li>
<button data-template="olivia-barnes">
<img src="images/students/olivia-barnes.jpg" alt="olivia-barnes" height="100"
width="100">
<div style="display: none;">
<div id="olivia-barnes">
<strong>Olivia Barnes</strong> <br> HSC (Com.) 91.4% in 2020-21
</div>
</div>
</button>
</li>
<li>
<button data-template="shermin-chauvan">
<img src="images/students/shermin-chauvan.jpeg" alt="shermin-chauvan" height="100"
width="100">
<div style="display: none;">
<div id="shermin-chauvan">
<strong>Shermin Chauvan</strong> <br> HSC (Sci.) 98.2% in 2020-21
</div>
</div>
</button>
</li>
<li>
<button data-template="tushar-singh">
<img src="images/students/tushar-singh.jpeg" alt="tushar-singh" height="100"
width="100">
<div style="display: none;">
<div id="tushar-singh">
<strong>Tushar Singh</strong> <br> HSC (Sci.) 94.5 in 2020-21
</div>
</div>
</button>
</li>
<li>
<button data-template="chrisjol-dsouza">
<img src="images/students/chrisjol-dsouza.jpeg" alt="chrisjol-dsouza" height="100"
width="100">
<div style="display: none;">
<div id="chrisjol-dsouza">
<strong>Chrisjol D'souza</strong> <br> HSC (Com.) 93.6% in 2020-21
</div>
</div>
</button>
</li>
<li>
<button data-template="shikha-pandey">
<img src="images/students/shikha-pandey.png" alt="shikha-pandey" height="100"
width="100">
<div style="display: none;">
<div id="shikha-pandey">
<strong>Shikha Pandey</strong> <br> SSC 88.40% in 2020-21
</div>
</div>
</button>
</li>
<li>
<button data-template="kevin-khandagale">
<img src="images/students/kevin-khandagale.png" alt="kevin-khandagale" height="100"
width="100">
<div style="display: none;">
<div id="kevin-khandagale">
<strong>Kevin Khandagale</strong> <br> SSC 82.60% in 2022-23
</div>
</div>
</button>
</li>
<li>
<button data-template="ayush-tiwari">
<img src="images/students/ayush-tiwari.jpeg" alt="ayush-tiwari" height="100"
width="100">
<div style="display: none;">
<div id="ayush-tiwari">
<strong>Ayush Tiwari</strong> <br> SSC 90.40% in 2021-22
</div>
</div>
</button>
</li>
<li>
<button data-template="gracy-khandagle">
<img src="images/students/gracy-khandagle.png" alt="gracy-khandagle" height="100"
width="100">
<div style="display: none;">
<div id="gracy-khandagle">
<strong>Gracy Khandagle</strong> <br> SSC 85.80% in 2021-22
</div>
</div>
</button>
</li>
<li>
<button data-template="vishal-yadav">
<img src="images/students/vishal-yadav.png" alt="vishal-yadav" height="100"
width="100">
<div style="display: none;">
<div id="vishal-yadav">
<strong>Vishal Yadav</strong> <br> SSC 84.80% in 2021-22
</div>
</div>
</button>
</li>
<li>
<button data-template="valentine-sequeira">
<img src="images/students/valentine-sequeira.png" alt="valentine-sequeira"
height="100" width="100">
<div style="display: none;">
<div id="valentine-sequeira">
<strong>Valentine Sequeira</strong> <br> SSC 80.80% in 2021-22
</div>
</div>
</button>
</li>
<li>
<button data-template="melvin-dsouza">
<img src="images/students/melvin-dsouza.jpeg" alt="melvin-dsouza" height="100"
width="100">
<div style="display: none;">
<div id="melvin-dsouza">
<strong>Melvin D'souza</strong> <br> HSC (Com.) 93% in 2020-21
</div>
</div>
</button>
</li>
<li>
<button data-template="siddharth-singh">
<img src="images/students/siddharth-singh.jpeg" alt="siddharth-singh" height="100"
width="100">
<div style="display: none;">
<div id="siddharth-singh">
<strong>Siddharth Singh</strong> <br> HSC (SCI) 91.5% in 2020-21
</div>
</div>
</button>
</li>
<li>
<button data-template="johnaven-gomes">
<img src="images/students/johnaven-gomes.jpeg" alt="johnaven-gomes" height="100"
width="100">
<div style="display: none;">
<div id="johnaven-gomes">
<strong>Johnaven Gomes</strong> <br> SSC 88.6% in 2020-21
</div>
</div>
</button>
</li>
<li>
<button data-template="anshika-tiwari">
<img src="images/students/anshika-tiwari.jpeg" alt="anshika-tiwari" height="100"
width="100">
<div style="display: none;">
<div id="anshika-tiwari">
<strong>Anshika Tiwari</strong> <br> SSC 92% in 2019-20
</div>
</div>
</button>
</li>
<li>
<button data-template="aatish-desale">
<img src="images/students/aatish-desale.jpeg" alt="aatish-desale" height="100"
width="100">
<div style="display: none;">
<div id="aatish-desale">
<strong>Aatish Desale</strong> <br> SSC 84.20% in 2016-17
</div>
</div>
</button>
</li>
<li>
<button data-template="dallas-carsto">
<img src="images/students/dallas-carsto.jpeg" alt="dallas-carsto" height="100"
width="100">
<div style="display: none;">
<div id="dallas-carsto">
<strong>Dallas Carsto</strong> <br> SSC 84.20% in 2016-17
</div>
</div>
</button>
</li>
<li>
<button data-template="siddhika-singh">
<img src="images/students/siddhika-singh.jpeg" alt="siddhika-singh" height="100"
width="100">
<div style="display: none;">
<div id="siddhika-singh">
<strong>Siddhika Singh</strong> <br> SSC 86.4% in 2020-21
</div>
</div>
</button>
</li>
<li>
<button data-template="sybil-fernandes">
<img src="images/students/sybil-fernandes.jpeg" alt="sybil-fernandes" height="100"
width="100">
<div style="display: none;">
<div id="sybil-fernandes">
<strong>Sybil Fernandes</strong> <br> SSC 86.8% in 2019-20
</div>
</div>
</button>
</li>
<li>
<button data-template="kunal-yadav">
<img src="images/students/kunal-yadav.jpeg" alt="kunal-yadav" height="100"
width="100">
<div style="display: none;">
<div id="kunal-yadav">
<strong>Kunal Yadav</strong> <br> SSC 82% in 2015-16
</div>
</div>
</button>
</li>
<li>
<button data-template="srishti-tiwari">
<img src="images/students/srishti-tiwari.jpeg" alt="srishti-tiwari" height="100"
width="100">
<div style="display: none;">
<div id="srishti-tiwari">
<strong>Srishti Tiwari</strong> <br> SSC 81.6% in 2019-20
</div>
</div>
</button>
</li>
<li>
<button data-template="raj-dubey">
<img src="images/students/raj-dubey.jpeg" alt="raj-dubey" height="100" width="100">
<div style="display: none;">
<div id="raj-dubey">
<strong>Raj Dubey</strong> <br> SSC 79.8% in 2019-20
</div>
</div>
</button>
</li>
<li>
<button data-template="neha-solanki">
<img src="images/students/neha-solanki.jpeg" alt="neha-solanki" height="100"
width="100">
<div style="display: none;">
<div id="neha-solanki">
<strong>Neha Solanki</strong> <br> SSC 80.73% in 2012-13
</div>
</div>
</button>
</li>
<li>
<button data-template="shubham-dhuri">
<img src="images/students/shubham-dhuri.jpeg" alt="shubham-dhuri" height="100"
width="100">
<div style="display: none;">
<div id="shubham-dhuri">
<strong>Shubham Dhuri</strong> <br> SSC 82.36% in 2012-13
</div>
</div>
</button>
</li>
<li>
<button data-template="pradnya-valanju">
<img src="images/students/pradnya-valanju.jpeg" alt="pradnya-valanju" height="100"
width="100">
<div style="display: none;">
<div id="pradnya-valanju">
<strong>Pradnya Valanju</strong> <br> SSC 90.91% in 2012-13
</div>
</div>
</button>
</li>
<li>
<button data-template="candrea-miranda">
<img src="images/students/candrea-miranda.jpeg" alt="candrea-miranda" height="100"
width="100">
<div style="display: none;">
<div id="candrea-miranda">
<strong>Candrea Miranda</strong> <br> HSC (Com.) 80% in 2019-20
</div>
</div>
</button>
</li>
<li>
<button data-template="saad-naik">
<img src="images/students/saad-naik-1.jpeg" alt="saad-naik" height="100"
width="100">
<div style="display: none;">
<div id="saad-naik">
<strong>Saad Naik</strong> <br> SSC 89.64% in 2012-13
</div>
</div>
</button>
</li>
<li>
<button data-template="afra-shaikh">
<img src="images/students/afra-shaikh.jpeg" alt="afra-shaikh" height="100"
width="100">
<div style="display: none;">
<div id="afra-shaikh">
<strong>Afra Shaikh</strong> <br> SSC 89.45% in 2012-13
</div>
</div>
</button>
</li>
<li>
<button data-template="roveena-dhonde">
<img src="images/students/roveena-dhonde.jpeg" alt="roveena-dhonde" height="100"
width="100">
<div style="display: none;">
<div id="roveena-dhonde">
<strong>Roveena Dhonde</strong> <br> SSC 83.2% in 2012-13
</div>
</div>
</button>
</li>
<li>
<button data-template="sarita-tiwari">
<img src="images/students/sarita-tiwari.jpeg" alt="sarita-tiwari" height="100"
width="100">
<div style="display: none;">
<div id="sarita-tiwari">
<strong>Sarita Tiwari</strong> <br> SSC 87.60% in 2013-14
</div>
</div>
</button>
</li>
<li>
<button data-template="valentina-dsouza">
<img src="images/students/valentina-dsouza.jpeg" alt="valentina-dsouza" height="100"
width="100">
<div style="display: none;">
<div id="valentina-dsouza">
<strong>Valentina Dटsouza</strong> <br> SSC 80% in 2014-15
</div>
</div>
</button>
</li>
<li>
<button data-template="janice-dsouza">
<img src="images/students/janice-dsouza.jpeg" alt="janice-dsouza" height="100"
width="100">
<div style="display: none;">
<div id="janice-dsouza">
<strong>Janice D'souza</strong> <br> SSC 83.20% in 2014-15
</div>
</div>
</button>
</li>
<li>
<button data-template="jonah-dais">
<img src="images/students/jonah-dais.jpeg" alt="jonah-dais" height="100"
width="100">
<div style="display: none;">
<div id="jonah-dais">
<strong>Jonah Dais</strong> <br> SSC 80.60% in 2015-16
</div>
</div>
</button>
</li>
<li>
<button data-template="rahul-chintal">
<img src="images/students/rahul-chintal.jpeg" alt="rahul-chintal" height="100"
width="100">
<div style="display: none;">
<div id="rahul-chintal">
<strong>Rahul Chintal</strong> <br> SSC 86% in 2015-16
</div>
</div>
</button>
</li>
<li>
<button data-template="bhavesh-patel">
<img src="images/students/bhavesh-patel.jpeg" alt="bhavesh-patel" height="100"
width="100">
<div style="display: none;">
<div id="bhavesh-patel">
<strong>Bhavesh Patel</strong> <br> SSC 75.80% in 2013-14
</div>
</div>
</button>
</li>
<li>
<button data-template="pooja-chintal">
<img src="images/students/pooja-chintal.jpeg" alt="pooja-chintal" height="100"
width="100">
<div style="display: none;">
<div id="pooja-chintal">