-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1057 lines (875 loc) · 38 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
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">
<!-- Mirrored from admissions.sathyabama.ac.in/engineering-college-admission-2024/index.php by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 May 2024 08:15:51 GMT -->
<!-- Added by HTTrack -->
<meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-011TFN5FGQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-011TFN5FGQ');
</script>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Wide Globe Education</title>
<meta content="" name="description">
<meta content="" name="keywords">
<meta name="facebook-domain-verification" content="w5k3n8lo1t95vbpe0tjxpu538p17oz" />
<!-- Favicons -->
<link
href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTD76kmRZCGxgQ5lv_VQtU1R6sI-aNyt0-yD4XGuqOxiJHZce2dqRiuVpFLSXPa5jQa4iY&usqp=CAU"
rel="icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="vendor/boxicons/css/boxicons.css" rel="stylesheet">
<link href="vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="css/style.css" rel="stylesheet">
<!-- Meta Pixel Code -->
<script>
!function (f, b, e, v, n, t, s) {
if (f.fbq) return; n = f.fbq = function () {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n; n.push = n; n.loaded = !0; n.version = '2.0';
n.queue = []; t = b.createElement(e); t.async = !0;
t.src = v; s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script',
'../../connect.facebook.net/en_US/fbevents.js');
fbq('init', '556393993218937');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=556393993218937&ev=PageView&noscript=1" /></noscript>
<!-- End Meta Pixel Code -->
</head>
<body>
<script>
fbq('trackCustom', 'Facebook_Landing_Page', { page: 'Facebook_Landing_Page' });
</script>
<!-- Google Tag Manager (noscript)
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T6849H"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>-->
<!-- End Google Tag Manager (noscript) -->
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<h1 class="logo mr-auto"><a href="index-2.html"><img
src="https://www.wideglobeeducation.com/assets/img/logo/white-logo.png" width="400" height="80"
style="object-fit: scale-down;"></a></h1>
<div class="call-rgt">
<i class="icofont-phone"></i><a href="tel:+916287987666"> +91 62879 87666</a> / <a
href="tel:++918292860377"> +91 82928 60377</a>
<!-- <br clear="all"> -->
<a href="https://www.facebook.com/wideglobeeducation" target="_blank"><i class="icofont-facebook"></i>
</a> <a href="https://x.com/i/flow/login?redirect_after_login=%2FWideGlobeRanchi" target="_blank"><i
class="icofont-twitter"></i></a> <a href="https://www.youtube.com/@wideglobeeducation5026"
target="_blank"><i class="icofont-youtube"></i></a>
</div>
</div>
</header><!-- End Header -->
<section style="width: 100%;">
<div class="row hero-bg">
<div class="col-lg-8 col-md-6" style="padding-left: 0px; padding-right: 0px;"> <!--Carousel Wrapper-->
<div id="carousel-example-1z" class="carousel slide carousel-fade z-depth-1-half" data-ride="carousel">
<!--Indicators-->
<ol class="carousel-indicators">
<li data-target="#carousel-example-1z" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-1z" data-slide-to="1"></li>
<li data-target="#carousel-example-1z" data-slide-to="2"></li>
<li data-target="#carousel-example-1z" data-slide-to="3"></li>
<li data-target="#carousel-example-1z" data-slide-to="4"></li>
<li data-target="#carousel-example-1z" data-slide-to="5"></li>
<li data-target="#carousel-example-1z" data-slide-to="6"></li>
<li data-target="#carousel-example-1z" data-slide-to="7"></li>
<li data-target="#carousel-example-1z" data-slide-to="8"></li>
</ol>
<div class="carousel-inner" role="listbox">
<!--/First slide-->
<div class="carousel-item active">
<img class="d-block w-100"
src="https://www.wideglobeeducation.com/images/gallery/nepal-admission-5.jpg"
alt="Sathyabama SAEEE2021" style="object-fit: cover; height: 425px;">
</div>
<!--/First slide-->
<!--/First slide-->
<div class="carousel-item">
<img class="d-block w-100"
src="/image-src/WhatsApp Image 2024-05-27 at 13.48.13_27a25e02.jpg"
alt="Sathyabama SAEEE2021" style="object-fit: cover; height: 425px;">
</div>
<!--/First slide-->
<!--/First slide-->
<div class="carousel-item">
<img class="d-block w-100"
src="/image-src/WhatsApp Image 2024-05-27 at 13.48.09_615e2b9b.jpg"
alt="Sathyabama SAEEE2021" style="object-fit: cover; height: 425px;">
</div>
<!--/First slide-->
<!--/First slide-->
<div class="carousel-item">
<img class="d-block w-100"
src="/image-src/WhatsApp Image 2024-05-27 at 13.48.12_94a8d477.jpg"
alt="Sathyabama SAEEE2021" style="object-fit: cover; height: 425px;">
</div>
<!--/First slide-->
</div>
<!--/.Slides-->
<!--Controls-->
<a class="carousel-control-prev" href="#carousel-example-1z" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span> </a>
<a class="carousel-control-next" href="#carousel-example-1z" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span> </a>
<!--/.Controls-->
</div>
</div>
<div id="enquiry" class="col-lg-4">
<div class="enquiry-form">
<h2> Admission Open - 2024-2025 </h2>
<script data-cfasync="false"
src="../cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
<script type="text/javascript">var submitted = false;</script>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;"
onload="if(submitted) {top.window.location='thankyou.html';}"></iframe>
<form id="contact-form" class="contact" method="post" target="hidden_iframe"
onSubmit="return checkForm(this);">
<!-- Mautic Hidden INPUTS -->
<input type="hidden" name="entry_1700287887" value= />
<input type="hidden" name="formId" value="5" />
<input type="hidden" name="return" value="this-must-exist" />
<input type="hidden" name="formName" value="" />
<input type="hidden" name="messenger" value="1" />
<!-- Mautic Hidden INPUTS -->
<div class="row">
<div class="col-md-6">
<input type="text" name="entry_731682698" id="entry_731682698" class="textbox"
dir="auto" aria-label="Name" placeholder="Name" aria-required="true" required=""
title="Enter your name">
<input type="email" name="entry_844967951" id="entry_844967951" class="textbox"
placeholder="Email" dir="auto" aria-label="Email" aria-required="true" required=""
title="Enter valid email address">
</div>
<div class="col-md-6 left-s">
<div class="ext"> +91 </div>
<input type="number" name="entry_1883136355" id="entry_1883136355" class="textbox mob"
placeholder="Mobile" dir="auto" aria-label="Mobile" aria-required="true" required=""
title="Enter Valid Phone Number">
<select name="entry_1101559715" id="entry_1101559715" aria-label="Select State"
aria-required="true" required="" class="textbox">
<option value="" disabled="" selected="">Select Your State</option>
<option value="Andaman and Nicobar Islands">Andaman and Nicobar Islands</option>
<option value="Andhra Pradesh">Andhra Pradesh</option>
<option value="Arunachal Pradesh">Arunachal Pradesh</option>
<option value="Assam">Assam</option>
<option value="Bihar">Bihar</option>
<option value="Chandigarh">Chandigarh</option>
<option value="Chhattisgarh">Chhattisgarh</option>
<option value="Dadra and Nagar Haveli">Dadra and Nagar Haveli</option>
<option value="Daman and Diu">Daman and Diu</option>
<option value="Delhi">Delhi</option>
<option value="Goa">Goa</option>
<option value="Gujarat">Gujarat</option>
<option value="Haryana">Haryana</option>
<option value="Himachal Pradesh">Himachal Pradesh</option>
<option value="Jammu and Kashmir">Jammu and Kashmir</option>
<option value="Ladakh">Ladakh</option>
<option value="Jharkhand">Jharkhand</option>
<option value="Karnataka">Karnataka</option>
<option value="Kerala">Kerala</option>
<option value="Lakshadweep">Lakshadweep</option>
<option value="Madhya Pradesh">Madhya Pradesh</option>
<option value="Maharashtra">Maharashtra</option>
<option value="Manipur">Manipur</option>
<option value="Meghalaya">Meghalaya</option>
<option value="Mizoram">Mizoram</option>
<option value="Nagaland">Nagaland</option>
<option value="Odisha">Odisha</option>
<option value="Puducherry">Puducherry</option>
<option value="Punjab">Punjab</option>
<option value="Rajasthan">Rajasthan</option>
<option value="Sikkim">Sikkim</option>
<option value="Tamil Nadu">Tamil Nadu</option>
<option value="Telengana">Telengana</option>
<option value="Tripura">Tripura</option>
<option value="Uttar Pradesh">Uttar Pradesh</option>
<option value="Uttarakhand">Uttarakhand</option>
<option value="West Bengal">West Bengal</option>
<option value="Other">Other</option>
</select>
</div>
<div class="col-md-12">
<!-- <select name="entry_1453416801" id="entry_1453416801" aria-label="Select State"
aria-required="true" required="" class="textbox">
<option value="">-- Programs Offered --</option>
<option value="B.E-CSE">B.E-Computer Science and Engineering</option>
<option value="B.E-CSE_AI">B.E-Computer Science and Engineering with specialization
in Artificial Intelligence </option>
<option value="B.E-CSE_DS">B.E-Computer Science and Engineering with specialization
in Data Science</option>
<option value="B.E-CSE_IOT">B.E-Computer Science and Engineering with specialization
in Internet of Things</option>
<option value="B.E-CSE_AI">B.E - Computer Science and Engineering with
specialization in Artificial Intelligence and Robotics</option>
<option value="B.E-CSE_AI_ML">B.E - Computer Science and Engineering with
specialization in Artificial Intelligence and Machine Learning </option>
<option value="B.E-CSE_BLACKCHAIN">B.E - Computer Science and Engineering with
specialization in Block Chain Technology</option>
<option value="B.E-CSE_CYBER">B.E - Computer Science and Engineering with
specialization in Cyber Security</option>
<option value="B.E-EEE">B.E-Electrical and Electronics Engineering</option>
<option value="B.E-ECE">B.E-Electronics and Communication Engineering</option>
<option value="B.E-MECH">B.E-Mechanical Engineering</option>
<option value="B.E-MECHATRONICS">B.E–Mechatronics</option>
<option value="B.E-AERO">B.E-Aeronautical Engineering</option>
<option value="B.E-CIVIL">B.E-Civil Engineering</option>
<option value="B.Tech-IT">B.Tech-Information Technology</option>
<option value="B.Tech-CHEMICAL">B.Tech-Chemical Engineering</option>
<option value="B.Tech-BTE">B.Tech–Biotechnology</option>
<option value="B.Tech-BME">B.Tech-Bio Medical</option>
<option value="B.Des">B.Des</option>
<option value="B.arch">B.Arch</option>
<option value="B.Sc-BIOINFORMATICS">B.Sc-Bio Informatics and Data Science</option>
<option value="B.Sc-BIOCHEMISTRY">B.Sc–BioChemistry</option>
<option value="B.Sc-BTE">B.Sc–BioTechnology</option>
<option value="B.Sc-CHEMISTRY">B.Sc–Chemistry</option>
<option value="B.Sc-CLINICAL">B.Sc-Clinical Nutrition and Dietetics</option>
<option value="B.Sc-CS">B.Sc-Computer Science</option>
<option value="B.Sc-CS_AI">B.Sc-Computer Science specialization in Artificial
intelligence</option>
<option value="B.Sc-DS">B.Sc - Data Science </option>
<option value="B.Sc-IT">B.Sc - Information Technology </option>
<option value="BCA">B.C.A - Bachelor of Computer Applications </option>
<option value="B.Sc-FD">B.Sc-Fashion Design</option>
<option value="B.Sc-MATHS">B.Sc–Mathematics</option>
<option value="B.Sc-MEDICAL_LAB">B.Sc-Medical Lab Technology</option>
<option value="B.Sc-MICRO">B.Sc–MicroBiology</option>
<option value="B.Sc-HotelMGNT">B.Sc–Hotel Management</option>
<option value="B.Sc-PHYSICS">B.Sc–Physics</option>
<option value="B.Sc-PSY">B.Sc–Psychology</option>
<option value="B.Sc-VISCOM">B.Sc-Visual Communication</option>
<option value="B.Sc-AVIATION">B.Sc-Aviation</option>
<option value="BCOM-FA">B.Com-FA</option>
<option value="BCOM-GA">B.Com-General</option>
<option value="BBA">BBA</option>
<option value="BA-ENG">B.A-English</option>
<option value="B.Pharm">B.Pharm</option>
<option value="D.Pharm">D.Pharm</option>
<option value="Law-BA.LLB">B.A. LL.B.(Hons.)</option>
<option value="Law-BBA.LLB">B.B.A. LL.B.(Hons.)</option>
<option value="Law-BCOM.LLB">B.Com.LL.B.(Hons.)</option>
<option value="Law-LLB">LL.B</option>
<option value="Nursing">B.Sc-Nursing</option>
<option value="BPT">BPT-Bachelor of Physiotherapy</option>
<option value="MA-ENG">M.A-English</option>
<option value="M.sc-VISCOM">M.Sc-Visual Communication</option>
<option value="M.sc-PHYSICS">M.Sc–Physics</option>
<option value="M.sc-MATHS">M.Sc–Mathematics</option>
<option value="M.sc-CHEMISTRY">M.Sc–Chemistry</option>
<option value="M.sc-BIOINFORMATICS">M.Sc-BioInformatics & Data Science</option>
<option value="M.E-CSE">M.E-Computer Science and Engineering</option>
<option value="M.E-EMBED">M.E-Applied Electronics</option>
<option value="M.E-CAD">M.E-Computer Aided Design</option>
<option value="M.E-STRUCT">M.E-Structural Engineering</option>
<option value="M.E-POWER">M.E-Power Electronics and Industrial Drives</option>
<option value="M.Tech-BTE">M.Tech-Biotechnology</option>
<option value="M.Tech-MEDICAL_INS">M.Tech-Medical Instrumentation</option>
<option value="M.Tech-EMBED_IOT">M.Tech-Embedded Systems and IoT</option>
<option value="M.ARCH-SUS">M.Arch-Sustainable Architecture</option>
<option value="M.ARCH-BUILD">M.Arch-Building Management</option>
<option value="M.B.A">M.B.A</option>
</select> -->
<input type="submit" name="submit" value="Submit" id="ff-submit-root"
class="submit-btn">
</div>
</form>
<br clear="all">
<div class="web">
For more info visit <br>
<a href="#" style="text-transform:lowercase;"> [email protected] </a>
</div>
</div>
</div>
</div>
</section>
<div class="informations">
<div class="box1 box">
<h2>10000+</h2>
<span>Students</span>
</div>
<div class="box2 box">
<h2>300+</h2>
<span>MBBS</span>
<span>Admissions in Nepal</span>
</div>
<div class="box3 box">
<h2>4000+</h2>
<span>MBBS</span>
<span>Admission Total</span>
</div>
<div class="box4 box">
<h2>21+</h2>
<span>Years Experience</span>
</div>
<div class="box5 box">
<h2>03</h2>
<span>Offices in India</span>
</div>
</div>
<!-- ======= Hero Section ======= -->
<!-- End Hero -->
<main id="main" style="width: 100%;">
<!-- ======= About Us Section ======= -->
<!-- End About Us Section -->
<!-- Testimonial start here-->
<div class="testimonials">
<h1>TESTIMONIALS</h1>
<div class="all-testimonials">
<div class="person person-2">
<div class="img">
<img src="https://www.wideglobeeducation.com/assets/img/testimonial/tp-testi-2.3.jpg" alt="">
</div>
<div class="person-info">
<div class="about">
<p>Thank you for helping my daughter admissions, i recommend people to take quality
consultation for any type of educational guidance from WGE!!! </p>
</div>
<div class="name">
<h3>Ashwini Phatak</h3>
<span>MBBS</span>
</div>
</div>
</div>
<div class="person person-3">
<div class="img">
<img src="https://www.wideglobeeducation.com/assets/img/testimonial/tp-testi-2.2.jpg" alt="">
</div>
<div class="person-info">
<div class="about">
<p>Thank you for helping my daughter admissions, i recommend people to take quality
consultation for any type of educational guidance from WGE!!! </p>
</div>
<div class="name">
<h3>Jagnyeshwar Debata</h3>
<span>MBBS, 2022</span>
</div>
</div>
</div>
<div class="person person-4">
<div class="img">
<img src="https://www.wideglobeeducation.com/assets/img/testimonial/tp-testi-2.1.jpg" alt="">
</div>
<div class="person-info">
<div class="about">
<p>Getting admission in PG is a very tough and confusing task... I was very worried
regarding my post graduation until my uncle ... </p>
</div>
<div class="name">
<h3>Bijendra Tiwary</h3>
<span>MBBS, 2022</span>
</div>
</div>
</div>
</div>
</div>
<hr>
<!-- Testimonial ends here-->
<!-- Nepal College section starts here -->
<main>
<h1 class="nepal-h1"> MBBS Colleges in Nepal</h1>
<div class="college-sections">
<div class="college">
<div class="college-image">
<img src="https://images.shiksha.com/mediadata/images/1598333983php5h6euZ_270x200.jpg"
alt="Tribhuvan university">
</div>
<div class="college-information">
<h5 class="name">Tribhuvan University</h5>
<button><a href="#enquiry">Apply Now</a></button>
</div>
</div>
<div class="college">
<div class="college-image">
<img src="https://images.shiksha.com/mediadata/images/1598282299phpbyWPe4_270x200.jpg"
alt="Manipal College of Medical Science">
</div>
<div class="college-information">
<h5 class="name">Manipal College of Medical Science</h5>
<button><a href="#enquiry">Apply Now</a></button>
</div>
</div>
<div class="college">
<div class="college-image">
<img src="https://images.shiksha.com/mediadata/images/1597906208phpO7Mbdx_270x200.png"
alt="B.P. Koirala Institute of Health Sciences">
</div>
<div class="college-information">
<h5 class="name">B.P. Koirala Institute of Health Sciences</h5>
<button><a href="#enquiry">Apply Now</a></button>
</div>
</div>
<div class="college">
<div class="college-image">
<img src="https://images.shiksha.com/mediadata/images/1584336028phpg9NR2a_270x200.jpg"
alt="Kathmandu Medical College">
</div>
<div class="college-information">
<h5 class="name">Kathmandu Medical College</h5>
<button><a href="#enquiry">Apply Now</a></button>
</div>
</div>
</div>
</main>
<!-- Nepal College section ends here -->
<div class="apply-now-section">
<h1 class="nepal-h1">Why Study MBBS in Nepal</h1>
<div class="nepal-map-list">
<div class="nepal-college-needs">
<ul>
<li>
<p><strong>Affordable Tuition Fees:</strong> Studying MBBS in Nepal is relatively more
affordable compared to many Western countries, making it a cost-effective option for
medical education.
</p>
</li>
<li>
<p><strong>High-Quality Education:</strong> Nepalese medical universities offer a high
standard of education with a curriculum that aligns with international standards, often
recognized by global medical councils.
</p>
</li>
<li>
<p><strong>English Medium Instruction:</strong> Most medical universities in Nepal teach in
English, which is advantageous for international students and eases the learning
process.
</p>
</li>
<li>
<p><strong>Modern Infrastructure:</strong> Nepal's medical colleges are equipped with modern
infrastructure and facilities, including advanced laboratories and well-maintained
hospitals for clinical practice</p>
</li>
<li>
<p><b>Cultural Proximity:</b> For students from South Asia, Nepal offers cultural and
geographical proximity, which can make the transition smoother and more comfortable.
</p>
</li>
<li>
<p><b>No Entrance Exams for Some Universities:</b> Some medical universities in Nepal do not
require international students to pass stringent entrance exams, simplifying the
admission process.</p>
</li>
</ul>
</div>
<div class="map-and-button">
<div class="map-section child">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQtS-QrazxruqMPHqONhcMHtHMrasxe2N-sMw&usqp=CAU"
alt="Nepal Map">
</div>
<div class="btn-section child">
<button><a href="#enquiry">Apply Now</a></button>
</div>
</div>
</div>
</div>
<!-- ======= program Section ======= -->
<!-- End program Section -->
<main>
<h1 class="nepal-h1"> MBBS Colleges in India</h1>
<div class="college-sections">
<div class="college">
<div class="college-image">
<img src="https://images.shiksha.com/mediadata/images/1549270927phpI7SB1K.jpeg"
alt="All India Institute of Medical Sciences">
</div>
<div class="college-information">
<h5 class="name">All India Institute of Medical Sciences</h5>
<button><a href="#enquiry">Apply Now</a></button>
</div>
</div>
<div class="college">
<div class="college-image">
<img src="https://images.shiksha.com/mediadata/images/1649350570phpbWEFEy.jpeg"
alt="Christian Medical College">
</div>
<div class="college-information">
<h5 class="name">Christian Medical College</h5>
<button><a href="#enquiry">Apply Now</a></button>
</div>
</div>
<div class="college">
<div class="college-image">
<img src="https://images.shiksha.com/mediadata/images/1532955234phpqx3qCR.png"
alt="B.P. Koirala Institute of Health Sciences">
</div>
<div class="college-information">
<h5 class="name">King George's Medical University</h5>
<button><a href="#enquiry">Apply Now</a></button>
</div>
</div>
<div class="college">
<div class="college-image">
<img src="https://images.shiksha.com/mediadata/images/1664107147phpj2MmOf.jpeg"
alt="AIIMS Rishikesh">
</div>
<div class="college-information">
<h5 class="name">AIIMS Rishikesh</h5>
<button><a href="#enquiry">Apply Now</a></button>
</div>
</div>
</div>
</main>
<!-- FAQ Section -->
<h1 style="text-align: center;" class="faq-h1">Frequently Asked Questions</h1>
<div class="faq">
<div class="faq-call">
<div class="main-faq">
<div class="questions">
<div class="question">
<p>Q: Are theWhat is the duration of the MBBS program in Nepal?</p>
<h2 class="open">+</h2>
</div>
<div class="answer">
<p> The MBBS program in Nepal typically lasts for 5.5 years, including a one-year
internship (Careers360 Study Abroad) (V4Edu).</p>
</div>
</div>
<div class="questions">
<div class="question">
<p>Q: What are the eligibility criteria for Indian students to study MBBS in Nepal?</p>
<h2 class="open">+</h2>
</div>
<div class="answer">
<p>Indian students must have completed 10+2 with Physics, Chemistry, Biology, and English,
securing at least 50% in each subject. They must also qualify for the NEET exam
(V4Edu) (Careers360 Study Abroad).
</p>
</div>
</div>
<div class="questions">
<div class="question">
<p>Q: Is NEET mandatory for admission to MBBS in Nepal?
</p>
<h2 class="open">+</h2>
</div>
<div class="answer">
<p>Yes, NEET is mandatory for Indian students to secure admission and practice in India
after completing their MBBS in Nepal (Careers360 Study Abroad) (Careers360 Study
Abroad)</p>
</div>
</div>
<div class="questions">
<div class="question">
<p>Q: What is the fee structure for MBBS in Nepal?
</p>
<h2 class="open">+</h2>
</div>
<div class="answer">
<p>The fees range from INR 40 to 60 lakhs for the entire course duration, depending on the
university. Public universities tend to have lower fees compared to private
institutions (Careers360 Study Abroad).
</p>
</div>
</div>
<div class="questions">
<div class="question">
<p>Q: What is the medium of instruction for MBBS in Nepal?
</p>
<h2 class="open">+</h2>
</div>
<div class="answer">
<p>
The medium of instruction is English, which is advantageous for international students
(Careers360 Study Abroad) (V4Edu).
</p>
</div>
</div>
<div class="questions">
<div class="question">
<p>Q: Are degrees from Nepal medical colleges recognized internationally?
</p>
<h2 class="open">+</h2>
</div>
<div class="answer">
<p>Yes, degrees from medical colleges in Nepal are recognized by global medical bodies like
WFME and FAIMER, and are also recognized by the Medical Council of India (MCI)
(Careers360 Study Abroad) (V4Edu).
</p>
</div>
</div>
<div class="questions">
<div class="question">
<p>Q: What is the admission process for MBBS in Nepal?
</p>
<h2 class="open">+</h2>
</div>
<div class="answer">
<p>The process involves:
Applying through the university’s official website.
Submitting required documents.
Qualifying NEET.
Attending counseling sessions if applicable (V4Edu).
</p>
</div>
</div>
<div class="questions">
<div class="question">
<p>Q: What are the living costs for students in Nepal?
</p>
<h2 class="open">+</h2>
</div>
<div class="answer">
<p>Living expenses, including accommodation, food, healthcare, and other necessities,
generally range between INR 10,000 to 15,000 per month depending on lifestyle and
location (Careers360 Study Abroad).
</p>
</div>
</div>
<div class="questions">
<div class="question">
<p>Q: Can students work while studying MBBS in Nepal?
</p>
<h2 class="open">+</h2>
</div>
<div class="answer">
<p>Students are generally advised to focus on their studies due to the demanding nature of
the MBBS program. However, some universities might allow part-time work under specific
conditions (V4Edu) (Select Your University).
</p>
</div>
</div>
</div>
<div class="call-now">
<span style="font-size: 20px; text-align: center;">For Any Assistance</span>
<span style="animation: none; font-size: 30px;"> <br>Call Now</span>
<div>
<div class="icon-num">
<i class="icofont-phone"></i><a href="tel:+916287987666"
style="color: #fff; font-size: 24px;"> +91 62879
87666</a>
</div>
<div class="icon-num2"> <i class="icofont-phone"></i><a href="tel:++918292860377"
style="color: #fff; font-size: 24px;"> +91 82928 60377</a></div>
</div>
</div>
</div>
</div>
<!-- FAQ Section Ends -->
<!-- ======= Contact Section ======= -->
</main><!-- End #main -->
<div class="floating-btn">
<div class="blink"><span style="animation: none;">Admission Open : 2024 - 2025 </span> <a href="#enquiry"
class="apply-now"> <b>Apply
Now</b> </a> Reach us @ <a class="f-call" href="tel:+916287987666"> 916287987666</a> / <a
class="f-call" href="tel:+918292860377"> 918292860377</a> </div>
</div>
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<div class="copyright">
© 2019-23 Wide Globe Education Private Limited. All Rights Reserved | Privacy Policy | Terms &
Conditions | Powered By DigiCrow
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<!-- Vendor JS Files -->
<script data-cfasync="false" src="../cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="vendor/owl.carousel/owl.carousel.min.js"></script>
<!-- Template Main JS File -->
<script src="js/main.js"></script>
<link rel="stylesheet" href="css/lightbox.min.css">
<script src="js/lightbox.min.js"></script>
<script>
function checkForm(form) // Submit button clicked
{
form.submit.disabled = true;
form.submit.value = "Please wait...";
//alert('script')
return submitted = true;
}
</script>
<script type="text/javascript">
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = window.location.search.substring(1),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : decodeURIComponent(sParameterName[1]);
}
}
return false;
};
var url = window.location.href;
let source = getUrlParameter('utm_source');
/*alert(source);
if (source == "facebook") {
$('#formId').val("2");
} else if (source == "google") {
$('#formId').val("3");
}*/
function gsheet_email() { //alert('fun');
// Ajax Call Google Form remote URL
$.ajax({
url: 'https://docs.google.com/forms/u/0/d/e/1FAIpQLScfebNhLc_Slv0Re3b-Yvbtk2EURFnsxq1Fl8StTXxVEXaw9w/formResponse', //The public Google Form url, but replace /view with /formResponse
data: $('#contact-form').serialize(), //Nifty jquery function that gets all the input data
type: 'POST', //tells ajax to post the data to the url
dataType: "json", //the standard data type for most ajax requests
statusCode: { //the status code from the POST request
0: function (data) { //0 is when Google gives a CORS error, don't worry it went through
//success
//$('#contact-form').text('success hooray!');
//window.location = "thankyou.html";
},
200: function (data) {//200 is a success code. it went through!
//success
//$('#contact-form').text('hooray!');
// window.location = "thankyou.html";
},
403: function (data) {//403 is when something went wrong and the submission didn't go through
//error
alert('Oh no! something went wrong. we should check our code to make sure everything matches with Google');
}
}
});
//AJAX CALL FOR EMAIL NOTIFICATION
// Ajax Call Google Form remote URL
$.ajax({
url: 'email/email.php', //email pho code
data: $('#contact-form').serialize(), //Nifty jquery function that gets all the input data
type: 'POST', //tells ajax to post the data to the url
dataType: "json", //the standard data type for most ajax requests
statusCode: { //the status code from the POST request
0: function (data) { //0 is when Google gives a CORS error, don't worry it went through
//success
//$('#contact-form').text('success hooray!');
window.location = "thankyou.html";
},
200: function (data) {//200 is a success code. it went through!
//success
//$('#contact-form').text('hooray!');
window.location = "thankyou.html";
},
403: function (data) {//403 is when something went wrong and the submission didn't go through
//error
alert('Oh no! something went wrong. we should check our code to make sure everything matches with Google');
}
}
});
return true;
}
$(() => {
$('#contact-form').on('submit', (e) => {
//e.preventDefault();
// google sheet and email update calling function
gsheet_email();
let form = $('#contact-form');
//let values = {mauticform: form.serializeArray().reduce((obj, val) => { obj[val.name] = val.value; return obj; }, {})};
// Ajax Call Mautic remote URL
if (source == "facebook") {
form.find('[name=formId]').val("4");
} else if (source == "google") {
form.find('[name=formId]').val("1");
}
else if (source == "the_hindu") {
form.find('[name=formId]').val("7");
}
else if (source == "shiksha") {
form.find('[name=formId]').val("8");
}
else if (source == "Puthiya_Thalaimurai") {
form.find('[name=formId]').val("9");
}
else if (source == "Liitle_talks") {
form.find('[name=formId]').val("10");
}
else if (source == "enaadu") {
form.find('[name=formId]').val("11");
}
else if (source == "Dainik_Jagaran") {
form.find('[name=formId]').val("6");
}
else if (source == "Daily_Thanthi") {
form.find('[name=formId]').val("12");
}
else if (source == "Galata") {
form.find('[name=formId]').val("14");
}
else if (source == "Times_of_India") {
form.find('[name=formId]').val("13");
}
else if (source == "Tamilnadu_now_YT") {
form.find('[name=formId]').val("15");
}
else if (source == "Behindwoods_YT") {
form.find('[name=formId]').val("16");
}
else if (source == "Disney_Hotstar") {
form.find('[name=formId]').val("17");
}
else if (source == "Other_Youtube_videos") {
form.find('[name=formId]').val("18");
}
else if (source == "Career_360") {
form.find('[name=formId]').val("19");
}
else if (source == "Polimer_Digital") {
form.find('[name=formId]').val("20");
}
//alert(form.find('[name=formId]').val());