-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
909 lines (861 loc) · 48.1 KB
/
Copy pathindex.html
File metadata and controls
909 lines (861 loc) · 48.1 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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5JJZ4P7W4R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5JJZ4P7W4R');
</script>
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "lfi1fnu7er");
</script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="BNVP Sr Secondary School affilated to RBSE Board since 1969">
<meta name="keywords" content="preschool,pre-school,school,best school jaipur, modern school,school near me, near by school, school, edu, education,high school,best teachers,better schooling,secondary degree,secondary education teacher,learning environment in the classroom,secondary education, private school,board of education,dream school,Affordable School, BNVP, bnvp, bnvp school, BNVP School, Intelligent, school, jaipur, Top jaipur school, best jaipur school, best school, school for my child, school for my child near me, awarded school, govt. school, heerapura, jagdamba nagar, training, coaching, coaching classes, tution, Co-curricular activity,budget school, best school, jaipur school, rajasthan top school, rajasthan no 1 school, Jaipur no1 school, secure school, camera in school, world class infra, admission open jaipur, jaipur school, best result school, class 1-12 school, top result school, higest marks, rajasthan, rajasthan school, no.1 school,
BNVP, bnvp, school, highly qualified, highly qualified teacher, old school, smart classroom, smart school, bus services, school bus, AC school bus, less fees, fee, modern facility, CBSE school, jaipur top school, jaipur, dream school">
<meta name="author" content="BNVP School Jaipur">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<meta name="google-site-verification" content="TlMkA52l-lH9cRNkiouZ9J4MrLFCeGDW69s_qO8tXgw" />
<meta name="google-site-verification" content="3ar22_wkSiSPzpvZPnsaWxtKpUwslj1jdYJIu0XVs2k" />
<title>BNVP Sr Sec School jaipur top school for children education in rajasthan and in India</title>
<!-- Google fonts -->
<link href="//fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- Template CSS Style link -->
<link rel="stylesheet" href="assets/css/style-starter.css">
<!-- bootstrap -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- //bootstrap -->
<script type="application/ld+json">
[
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "BNVP School"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Our Pride Moments"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "BNVP School Invites Applications For Admission With Scholarship upto 70%"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Important update for scholarship intake exam & admission query fair in school premises on 13th April 2025 Early Bird Admission Fair All admission seekers (parents and students) receive free counseling and a school tour. Individual admission: up to 10%–25% off the first-month school fee. Combine admission (up to 2 students): up to 10%–25% off (first-month school fee) + admission fees waived off. Exclusive Admission Offer ( More than 2 students upto 4 students) 50 % off the admission fee for all students taking admission in group + upto 10% off the first-month school fee",
"image": "https://bnvpschool.github.io/jaipur/assets/images/topper.png",
"telephone": "91-9982820348",
"url": "https://forms.gle/RryTHxjTAZBJN4aU6"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Close"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Your Kids Deserve TheBest Education Active Learning, Expert Teachers & Safe Environment",
"url": "https://bnvpschool.github.io/jaipur/contact.html"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Your Kids Deserve TheBest Education Active Learning, Expert Teachers & Safe Environment",
"url": "https://forms.gle/RryTHxjTAZBJN4aU6"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Come join us in building better future",
"image": "https://bnvpschool.github.io/jaipur/assets/images/banner.png"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Achieve Your Goals With BNVP School Expert Teachers Creating an optimal classroom environment for learning. Quality Education Affordable, accessible quality education for cognitive development. Surveillance Campus Your champ is in good care with complete campus surveillance with 60+ cameras. Best Scholarships Awarded to the students as per the Govt. policy",
"telephone": "+91-9982820348"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "We Are The Best Choice For Your Child Our Educational society is formed to propagate and establish fine educational system. B.N.V.P. School is a co-educational senior secondary English medium institution set up in July 1989. The institution is managed by well qualified and experienced Teachers. Special Education Govt. Approved Scholarships Traditional Academies In-house Academics Doubt Sessions",
"url": "https://bnvpschool.github.io/jaipur/contact.html"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Tools For Teachers And Learners",
"image": [
"https://bnvpschool.github.io/jaipur/assets/images/sc14.png",
"https://bnvpschool.github.io/jaipur/assets/images/sc8.png",
"https://bnvpschool.github.io/jaipur/assets/images/sc1.png"
]
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "We are Proud to Share with You 29,799 Students Enrolled Till Date 2 Our Branches 100 Total Courses 225 Awards Won"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Call To Enroll Your Child Begin the change today! And Choose The Best For Your Loved Ones",
"telephone": [
"+91-99 828 20348",
"91-99 828 20348"
],
"email": "bnvpschool1989@gmail.com"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "About Us"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Courses Become a Teacher"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Contact Us"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Career"
},
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Blog Posts Privacy policy Contact Us License & uses Tutorials",
"url": "https://earth.google.com/web/search/BNVP+SCHOOL,+Mandir+Marg,+Heerapura,+Heerawala,+Jaipur,+Rajasthan/@26.88964,75.7264772,418.66130604a,930.0941858d,35y,0h,45t,0r/data=Cq0BGoIBEnwKJTB4Mzk2ZGI0YjgxMTE3ZTY3OToweDI5Y2Y1OWFmZjkwOGY0ZDIZpDZxcr_jOkAhidI5mn7uUkAqQUJOVlAgU0NIT09MLCBNYW5kaXIgTWFyZywgSGVlcmFwdXJhLCBIZWVyYXdhbGEsIEphaXB1ciwgUmFqYXN0aGFuGAIgASImCiQJNmVAMIDcNEARNGVAMIDcNMAZTAzab2iaLkAhqqK-4XjYVcAoAg"
}
]
</script>
</head>
<body oncontextmenu="return false;">
<!-- 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-graduation-cap"></i>BNVP School
</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 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="#gallery">Our Pride Moments</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Schoolgallery.html">School Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="courses.html">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<!-- search-right -->
<div class="header-search position-relative">
<div class="search-right mx-lg-2">
<!--
<a href="#search" class="btn search-btn p-0" title="search">
<i class="fas fa-search"></i></a>
-->
<!-- search popup -->
<div id="search" class="pop-overlay">
<div class="popup">
<form action="#search" method="GET" class="search-box">
<input type="search" placeholder="Enter Keyword..." name="search"
required="required" autofocus="">
<button type="submit" class="btn"><span class="fas fa-search"
aria-hidden="true"></span></button>
</form>
</div>
<a class="close" href="#close">×</a>
</div>
<!-- //search popup -->
</div>
</div>
<!--//search-right-->
</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 -->
<!-- //Modal popup for congratulations -->
<div id="myModal" class="modal fade" role="dialog" style="overflow:auto;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header" style="background-color:#07318c">
<!-- <button type="button" class="close" data-dismiss="modal">×</button> -->
<h4 class="modal-title" style="font-size:18px;color:#fff;">Admission Open For Session <b>"2026-2027"</b></h4>
</div>
<div class="modal-body" style="height:550px;overflow-y:auto;overflow-x:hidden;">
<img src="assets/images/scholarship.png" alt="Admission Open For 2026-2027 Session" style="width: 200px;height: 200px;border-radius: 50%;margin-left: 30%;box-shadow: 4px 11px 11px 6px #d5d4d4;"/>
<p style="margin-top:20px">🎒✨ Big News, Parents!</p>
<p style="margin-top:15px">
Admissions are now OPEN from Pre-Nursery to Class 12th. 🎓</p>
<p>Looking for more than books and blackboards?
We’ve got:
🎨 Fun Activities | 🧠 Smart Classes
⚽ Sports Galore | 💡 Curious Learning
Give your child a school they’ll love every day!</p>
<p style="margin-top:10px">You can post an admission inquiry by filling inquiry form, and we will connect with you directly:</p>
<p style="margin-top:25px"><b>Click on inquiry form-</b></p>
<p style="margin-top:15px"><a href="https://bnvpschool.github.io/jaipur/contact.html" style="color:blue"><i class="fas fa-file-alt"></i> <u>Inquiry Form</u></a></p>
</p>
<p style="margin-top:20px">Or call us at</p>
<p style="margin-top:10px"></p>
<a href="tel:+919982820348"><i class="fas fa-phone-alt"></i> +91-9982820348</a>
<!--<p><b>
Warm regards</b>,</p>
<p><b style="color:Orange">Surendra Poonia</b></p>
<p>Director</p>
<p>B.N.V.P Senior Secondary School</p>-->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- end of congratulation modal -->
<!-- banner section -->
<section id="home" class="w3l-banner py-5">
<div class="banner-content">
<div class="container py-4">
<div class="row align-items-center pt-sm-5 pt-4">
<div class="col-md-6">
<h3 class="mb-lg-4 mb-3">Your Kids Deserve The<span class="d-block">Best Education</span>
</h3>
<p class="banner-sub">Active Learning, Expert Teachers & Safe Environment</p>
<div class="d-flex align-items-center buttons-banner">
<a href="contact.html" class="btn btn-style mt-lg-5 mt-4">Admission Query</a>
<!--<a href="https://forms.gle/RryTHxjTAZBJN4aU6" class="btn btn-style mt-lg-5 mt-4">Scholarship Exam Enrollment</a>-->
</div>
</div>
<div class="col-md-6 right-banner-2 text-end position-relative mt-md-0 mt-5">
<div class="sub-banner-image mx-auto">
<img src="assets/images/banner.png" class="img-fluid position-relative" alt=" ">
</div>
<div class="banner-style-1 position-absolute">
<div class="banner-style-2 position-relative">
<h6>Come join us in building better future</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //banner section -->
<!-- home 4grids block -->
<section class="services-w3l-block py-5" id="features">
<div class="container py-md-5 py-4">
<div class="title-main text-center mx-auto mb-md-5 mb-4" style="max-width:500px;">
<p class="text-uppercase">Best Features</p>
<h3 class="title-style">Achieve Your Goals With BNVP School</h3>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch">
<a href="courses.html">
<div class="icon-box icon-box-clr-1">
<div class="icon"><i class="fas fa-user-friends"></i></div>
<h4 class="title">Expert Teachers</h4>
<p>Creating an optimal classroom environment for learning.</p>
</div></a>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mt-md-0 mt-4">
<a href="courses.html">
<div class="icon-box icon-box-clr-2">
<div class="icon"><i class="fas fa-book-reader"></i></div>
<h4 class="title">Quality Education</h4>
<p>Affordable, accessible quality education for cognitive development.</p>
</div></a>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mt-lg-0 mt-4">
<a href="courses.html">
<div class="icon-box icon-box-clr-3">
<div class="icon"><i class="fas fa-user-graduate"></i></div>
<h4 class="title">Surveillance Campus</h4>
<p>Your champ is in good care with complete campus surveillance with 60+ cameras.</p>
</div></a>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mt-lg-0 mt-4">
<a href="courses.html">
<div class="icon-box icon-box-clr-4">
<div class="icon"><i class="fas fa-university"></i></div>
<h4 class="title">Best Scholarships</h4>
<p>Awarded to the students as per the Govt. policy.</p>
</div></a>
</div>
</div>
</div>
</section>
<!-- home 4grids block -->
<!-- home image with content block -->
<section class="w3l-servicesblock pt-lg-5 pt-4 pb-5 mb-lg-5" id="about">
<div class="container pb-md-5 pb-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/img1.jpg" alt="" class="img-fluid radius-image">
</div>
<a href="tel:+919982820348">
<div class="imginfo__box">
<h6 class="imginfo__title">Get an appointment today!</h6>
<p>Help your child choose what is best for their future <br>by organising their education in the best possible way. </p>
<a href="tel:+919982820348"><i class="fas fa-phone-alt"></i> +91-9982820348</a>
</div></a>
</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">We Are The Best Choice For Your Child</h3>
<p class="mt-4">Our Educational society is formed to propagate and establish fine educational system. B.N.V.P.
School is a co-educational senior secondary English medium institution set up in July 1989. The institution is managed by well qualified and experienced Teachers.</p>
<ul class="mt-4 list-style-lis pt-lg-1">
<li><i class="fas fa-check-circle"></i>Special Education</li>
<li><i class="fas fa-check-circle"></i>Govt. Approved Scholarships</li>
<li><i class="fas fa-check-circle"></i>Traditional Academies</li>
<li><i class="fas fa-check-circle"></i>In-house Academics Doubt Sessions</li>
</ul>
<a href="contact.html" class="btn btn-style mt-5">Apply Now</a>
</div>
</div>
</div>
</section>
<!-- //home image with content block -->
<!-- courses section -->
<div class="w3l-grids-block-5 home-course-bg py-5" id="gallery">
<div class="container py-md-5 py-4">
<div class="title-main text-center mx-auto mb-md-5 mb-4" style="max-width:500px;">
<p class="text-uppercase">Best Development Of Your Child</p>
<h3 class="title-style">Let Your Champ Find His/Her Interest</h3>
</div>
<a href="Schoolgallery.html">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc14.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html">Princess Group Dance </a>
</div>
</div></a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-md-0 mt-4">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc12.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html" class="sec-2">Janmasthmi Celebration</a>
</div>
</div></a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-0 mt-4">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc11.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html" class="sec-3">Fancy Dress Competition</a>
</div>
</div></a>
</div>
</div>
</div></a>
<a href="Schoolgallery.html">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc10.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html">Rangoli Competition </a>
</div>
</div></a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-md-0 mt-4">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc9.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html" class="sec-2">Morning Refreshments</a>
</div>
</div></a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-0 mt-4">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc8.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html" class="sec-3">Independence Day Celebrations</a>
</div>
</div></a>
</div>
</div>
</div></a>
<a href="Schoolgallery.html">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc7.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html">Little Champ Classrooms </a>
</div>
</div></a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-md-0 mt-4">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc6.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html" class="sec-2">Well Equipped Digital Computer Lab</a>
</div>
</div></a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-0 mt-4">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc5.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html" class="sec-3">World Class Teaching Experience With Projector And Surveillance Cameras</a>
</div>
</div></a>
</div>
</div>
</div></a>
<a href="Schoolgallery.html">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc1.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html">Modern Benches </a>
</div>
</div></a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-md-0 mt-4">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc2.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html" class="sec-2">Multi Purpose Play Ground</a>
</div>
</div></a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-0 mt-4">
<div class="coursecard-single">
<a href="Schoolgallery.html">
<div class="grids5-info position-relative">
<img src="assets/images/sc3.png" alt="" class="img-fluid" />
<div class="meta-list">
<a href="Schoolgallery.html" class="sec-3">Our Champs Creativity</a>
</div>
</div></a>
</div>
</div>
</div>
</a>
<!--<div class="text-center mt-sm-5 mt-4 pt-sm-0 pt-1">
<a class="btn btn-style btn-style-secondary mt-sm-3" href="courses.html">
Browse more courses</a>
</div>-->
</div>
</div>
<!-- //courses section -->
<!-- why choose block -->
<section class="w3l-service-1 py-5">
<div class="container py-md-5 py-4">
<div class="title-main text-center mx-auto mb-md-5 mb-4" style="max-width:500px;">
<p class="text-uppercase">Why Choose Us</p>
<h3 class="title-style">Tools For Teachers And Learners</h3>
</div>
<a href="about.html">
<div class="row content23-col-2 text-center">
<div class="col-md-6">
<div class="content23-grid content23-grid1">
<h4>Expert Teachers</h4>
</div>
</div>
<div class="col-md-6 mt-md-0 mt-4">
<div class="content23-grid content23-grid2">
<h4>Safe Environment</h4>
</div>
</div>
</div>
</a>
</div>
</section>
<!-- //why choose block -->
<!-- stats block -->
<section class="w3-stats pt-4 pb-5" id="stats">
<div class="container pb-md-5 pb-4">
<div class="title-main text-center mx-auto mb-md-5 mb-4" style="max-width:500px;">
<p class="text-uppercase">Our Statistics</p>
<h3 class="title-style">We are Proud to Share with You</h3>
</div>
<div class="row text-center pt-4">
<div class="col-md-3 col-6">
<div class="counter">
<img src="assets/images/icon-1.png" alt="" class="img-fluid">
<div class="timer count-title count-number mt-sm-1" data-to="36076" data-speed="1500"></div>
<p class="count-text">Students Enrolled Till Date</p>
</div>
</div>
<div class="col-md-3 col-6">
<div class="counter">
<img src="assets/images/icon-2.png" alt="" class="img-fluid">
<div class="timer count-title count-number mt-3" data-to="02" data-speed="1"></div>
<p class="count-text">Our Branches</p>
</div>
</div>
<div class="col-md-3 col-6 mt-md-0 mt-5">
<div class="counter">
<img src="assets/images/icon-3.png" alt="" class="img-fluid">
<div class="timer count-title count-number mt-3" data-to="100" data-speed="10"></div>
<p class="count-text">Total Courses</p>
</div>
</div>
<div class="col-md-3 col-6 mt-md-0 mt-5">
<div class="counter">
<img src="assets/images/icon-4.png" alt="" class="img-fluid">
<div class="timer count-title count-number mt-3" data-to="225" data-speed="10"></div>
<p class="count-text">Awards Won</p>
</div>
</div>
</div>
</div>
</section>
<!-- //stats block -->
<!-- testimonials block -->
<section class="w3l-index4 py-5" id="testimonials">
<div class="container py-md-5 py-4">
<div class="content-slider text-center">
<div class="clients-slider">
<div class="mask">
<ul>
<li class="anim1">
<img src="assets/images/image.jpg" class="img-fluid rounded-circle"
alt="client image" />
<blockquote class="quote"><q>I did my schooling from here, I enjoyed every bit whether it be academics or other extra curricular activities, I got opportunities to shine. From this school only i got best college. Really grateful for their teacher guidance.
</q> </blockquote>
<div class="source">- Yash Singh</div>
</li>
<li class="anim2">
<img src="assets/images/testi2.jpg" class="img-fluid rounded-circle"
alt="client image" />
<blockquote class="quote"><q>Very nice school
</q> </blockquote>
<div class="source">- Radhey Sharma</div>
</li>
<li class="anim3">
<img src="assets/images/testi3.jpg" class="img-fluid rounded-circle "
alt="client image" />
<blockquote class="quote"><q>I did my schooling from here, I enjoyed every bit whether it be academics or other extra curricular activities, I got opportunities to shine. They are Disciplined and give complete cooperation to the students.
</q> </blockquote>
<div class="source">- Sakshi Poonia</div>
</li>
<li class="anim4">
<img src="assets/images/image.jpg" class="img-fluid rounded-circle"
alt="client image" />
<blockquote class="quote"><q>My school is so good all teachers are very good in conversation with students... Thank you.. I like this school..
</q> </blockquote>
<div class="source">- Sunita Kumawat</div>
</li>
<li class="anim5">
<img src="assets/images/image.jpg" class="img-fluid rounded-circle"
alt="client image" />
<blockquote class="quote"><q>Excellent study
</q> </blockquote>
<div class="source">- Sugam Gupta</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- //testimonials block -->
<!-- blog block -->
<div class="w3l-blog-block-5 py-5" id="blog">
<div class="container py-md-5 py-4">
<div class="title-main text-center mx-auto mb-md-5 mb-4" style="max-width:500px;">
<p class="text-uppercase">Our News</p>
<h3 class="title-style">Latest <span>Blog</span> Posts</h3>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6">
<a href="https://www.google.com/search?q=bnvp+school&sca_esv=da56b67854fd2398&rlz=1C1FHFK_enIN1065IN1066&ei=55XyZY3kMv6QseMP9YaH0Ac&gs_ssp=eJzj4tVP1zc0TLIwyzErKzQwYLRSNagwtjRLSTJJsjA0NDRPNTO3tDKoMLJMTjO1TExLszSwSDNJMfLiTsorK1AoTs7Iz88BAGUNE0A&oq=bnvp+&gs_lp=Egxnd3Mtd2l6LXNlcnAiBWJudnAgKgIIADIQEC4YgAQYigUYQxjHARivATIFEAAYgAQyHxAuGIAEGIoFGEMYxwEYrwEYlwUY3AQY3gQY4ATYAQFIihpQsAJY0hJwAXgAkAEAmAGIAaAB8QKqAQMwLjO4AQHIAQD4AQGYAgSgAo8DwgIOEC4YgAQYxwEYrwEYsAPCAggQABiABBiwA8ICDxAuGIAEGA0YxwEY0QMYCsICCRAAGIAEGA0YCsICHhAuGIAEGA0YxwEY0QMYChiXBRjcBBjeBBjgBNgBAcICChAAGIAEGIoFGEPCAgcQABiABBgKwgITEC4YgAQYChixAxiDARjHARjRA8ICExAuGIAEGAoYsQMYgwEYxwEYrwHCAgYQABgDGAqYAwCIBgGQBgK6BgYIARABGBSSBwMxLjOgB6UV&sclient=gws-wiz-serp#ip=1&scso=_-5XyZfuKEbHvseMPi427wAQ_44:118&lpstate=pid:5158054281054209568">
<div class="blog-card-single">
<div class="grids5-info">
<img src="assets/images/blog2.jpg" alt="" />
<div class="blog-info">
<h4>Admission Opens For Academic Session 2025-2026...</h4>
<p>Come and enroll your champ with affordable fee structure and scholoarships.</p>
<div class="d-flex align-items-center justify-content-between mt-4">
<a class="d-flex align-items-center" title="23k followers">
<img class="img-fluid" src="assets/images/testi2.jpg" alt="admin"
style="max-width:40px"> <span class="small ms-2">BNVP Admin</span>
</a>
<p class="date-text"><i class="far fa-calendar-alt me-1"></i>March 14</p>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 mt-md-0 mt-4">
<a href="https://www.google.com/search?q=bnvp+school&sca_esv=da56b67854fd2398&rlz=1C1FHFK_enIN1065IN1066&ei=55XyZY3kMv6QseMP9YaH0Ac&gs_ssp=eJzj4tVP1zc0TLIwyzErKzQwYLRSNagwtjRLSTJJsjA0NDRPNTO3tDKoMLJMTjO1TExLszSwSDNJMfLiTsorK1AoTs7Iz88BAGUNE0A&oq=bnvp+&gs_lp=Egxnd3Mtd2l6LXNlcnAiBWJudnAgKgIIADIQEC4YgAQYigUYQxjHARivATIFEAAYgAQyHxAuGIAEGIoFGEMYxwEYrwEYlwUY3AQY3gQY4ATYAQFIihpQsAJY0hJwAXgAkAEAmAGIAaAB8QKqAQMwLjO4AQHIAQD4AQGYAgSgAo8DwgIOEC4YgAQYxwEYrwEYsAPCAggQABiABBiwA8ICDxAuGIAEGA0YxwEY0QMYCsICCRAAGIAEGA0YCsICHhAuGIAEGA0YxwEY0QMYChiXBRjcBBjeBBjgBNgBAcICChAAGIAEGIoFGEPCAgcQABiABBgKwgITEC4YgAQYChixAxiDARjHARjRA8ICExAuGIAEGAoYsQMYgwEYxwEYrwHCAgYQABgDGAqYAwCIBgGQBgK6BgYIARABGBSSBwMxLjOgB6UV&sclient=gws-wiz-serp#ip=1&scso=_-5XyZfuKEbHvseMPi427wAQ_44:118&lpstate=pid:5158054281054209568">
<div class="blog-card-single">
<div class="grids5-info">
<img src="assets/images/blog1.jpg" alt="" />
<div class="blog-info">
<h4>Games Programs...</h4>
<p>Best in games facility to overall growth of his/her physical strength.</p>
<div class="d-flex align-items-center justify-content-between mt-4">
<a class="d-flex align-items-center" title="23k followers">
<img class="img-fluid" src="assets/images/testi1.jpg" alt="admin"
style="max-width:40px"> <span class="small ms-2">BNVP Admin</span>
</a>
<p class="date-text"><i class="far fa-calendar-alt me-1"></i>July 22</p>
</div>
</div>
</div>
</div></a>
</div>
<div class="col-lg-4 col-md-6 mt-lg-0 mt-4">
<a href="https://www.google.com/search?q=bnvp+school&sca_esv=da56b67854fd2398&rlz=1C1FHFK_enIN1065IN1066&ei=55XyZY3kMv6QseMP9YaH0Ac&gs_ssp=eJzj4tVP1zc0TLIwyzErKzQwYLRSNagwtjRLSTJJsjA0NDRPNTO3tDKoMLJMTjO1TExLszSwSDNJMfLiTsorK1AoTs7Iz88BAGUNE0A&oq=bnvp+&gs_lp=Egxnd3Mtd2l6LXNlcnAiBWJudnAgKgIIADIQEC4YgAQYigUYQxjHARivATIFEAAYgAQyHxAuGIAEGIoFGEMYxwEYrwEYlwUY3AQY3gQY4ATYAQFIihpQsAJY0hJwAXgAkAEAmAGIAaAB8QKqAQMwLjO4AQHIAQD4AQGYAgSgAo8DwgIOEC4YgAQYxwEYrwEYsAPCAggQABiABBiwA8ICDxAuGIAEGA0YxwEY0QMYCsICCRAAGIAEGA0YCsICHhAuGIAEGA0YxwEY0QMYChiXBRjcBBjeBBjgBNgBAcICChAAGIAEGIoFGEPCAgcQABiABBgKwgITEC4YgAQYChixAxiDARjHARjRA8ICExAuGIAEGAoYsQMYgwEYxwEYrwHCAgYQABgDGAqYAwCIBgGQBgK6BgYIARABGBSSBwMxLjOgB6UV&sclient=gws-wiz-serp#ip=1&scso=_-5XyZfuKEbHvseMPi427wAQ_44:118&lpstate=pid:5158054281054209568">
<div class="blog-card-single">
<div class="grids5-info">
<img src="assets/images/blog3.jpg" alt="" />
<div class="blog-info">
<h4>Articles Programs...</h4>
<p>Let them discover their passion for creativity with modern & innovative programs.</p>
<div class="d-flex align-items-center justify-content-between mt-4">
<a class="d-flex align-items-center" title="23k followers">
<img class="img-fluid" src="assets/images/testi3.jpg" alt="admin"
style="max-width:40px"> <span class="small ms-2">BNVP Admin
</span>
</a>
<p class="date-text"><i class="far fa-calendar-alt me-1"></i>July 22</p>
</div>
</div>
</div>
</div></a>
</div>
</div>
</div>
</div>
<!-- //blog block -->
<!-- call block -->
<section class="w3l-call-to-action-6">
<a href="contact.html">
<div class="container py-md-5 py-sm-4 py-5">
<div class="d-lg-flex align-items-center justify-content-between">
<div class="left-content-call">
<h3 class="title-big">Call To Enroll Your Child</h3>
<p class="text-white mt-1">Begin the change today! And Choose The Best For Your Loved Ones</p>
</div>
<div class="right-content-call mt-lg-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:+919982820348">+91-99 828 20348</a>
</li>
<li><a href="contact.html" class="btn btn-style btn-style-2 mt-lg-0 mt-3">Join for free</a>
</li>
</ul>
</div>
</div>
</div>
</a>
</section>
<!-- //call block -->
<!-- footer block -->
<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-lg-4 col-md-6 footer-list-29">
<h6 class="footer-title-29">Contact Info </h6>
<p class="mb-2 pe-xl-5">Address : BNVP Senior Secondary School
34, Mandir Marg, Heerapura, Heerawala, Jaipur, Rajasthan, Pin - 302021.
</p>
<p class="mb-2">Phone Number : <a href="tel:+919982820348">+91-99 828 20348</a></p>
<p class="mb-2">Email : <a href="mailto:bnvpschool1989@gmail.com?cc=headhr.bnvp@gmail.com&subject=Enquiry%20request">bnvpschool1989@gmail.com</a></p>
</div>
<div class="col-lg-2 col-md-3 col-6 footer-list-29 mt-md-0 mt-4">
<ul>
<h6 class="footer-title-29">Quick Links</h6>
<li><a href="about.html">About Us</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="mailto:bnvpschool1989@gmail.com?cc=headhr.bnvp@gmail.com&subject=Let%20me%20know%20if%20you%20have%20any%20available%20Oppurtunity%20in%20BNVP%20school">Become a Teacher</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="mailto:bnvpschool1989@gmail.com?cc=headhr.bnvp@gmail.com&subject=Career%20oppurtunity%20in%20BNVP%20school">Career</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-3 col-6 ps-lg-5 ps-lg-4 footer-list-29 mt-md-0 mt-4">
<ul>
<h6 class="footer-title-29">Explore</h6>
<li><a href="about.html">Blog Posts</a></li>
<li><a href="#privacy">Privacy policy</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="#license">License & uses</a></li>
<li><a href="#tutorials">Tutorials</a></li>
</ul>
</div>
<!--<div class="col-lg-4 col-md-6 col-sm-8 footer-list-29 mt-lg-0 mt-4 ps-lg-5">
<h6 class="footer-title-29">Subscribe</h6>
<form action="#" class="subscribe d-flex" method="post">
<input type="email" name="email" placeholder="Email Address" required="">
<button class="button-style"><span class="fa fa-paper-plane"
aria-hidden="true"></span></button>
</form>
<p class="mt-3">Subscribe to our mailing list and get updates to your email inbox.</p>
</div>-->
</div>
<!-- copyright -->
<p class="copy-footer-29 text-center pt-lg-2 mt-5 pb-2">© 2025-26 BNVP School. All rights reserved. Find our route at
<a href="https://earth.google.com/web/search/BNVP+SCHOOL,+Mandir+Marg,+Heerapura,+Heerawala,+Jaipur,+Rajasthan/@26.88964,75.7264772,418.66130604a,930.0941858d,35y,0h,45t,0r/data=Cq0BGoIBEnwKJTB4Mzk2ZGI0YjgxMTE3ZTY3OToweDI5Y2Y1OWFmZjkwOGY0ZDIZpDZxcr_jOkAhidI5mn7uUkAqQUJOVlAgU0NIT09MLCBNYW5kaXIgTWFyZywgSGVlcmFwdXJhLCBIZWVyYXdhbGEsIEphaXB1ciwgUmFqYXN0aGFuGAIgASImCiQJNmVAMIDcNEARNGVAMIDcNMAZTAzab2iaLkAhqqK-4XjYVcAoAg"
target="_blank">BNVP Jaipur</a></p>
<!-- //copyright -->
</div>
</div>
</footer>
<!-- //footer block -->
<!-- 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 -->
<!-- /counter-->
<script src="assets/js/counter.js"></script>
<!-- //counter-->
<!-- theme switch js (light and dark)-->
<script src="assets/js/theme-change.js"></script>
<!-- //theme switch js (light and dark)-->
<script type="text/javascript">
window.addEventListener('DOMContentLoaded', () => {
const modal = new bootstrap.Modal(document.querySelector('#myModal'));
modal.show();
});
</script>
<!-- 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 -->
<!-- //Js scripts -->
</body>
</html>