-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
959 lines (866 loc) · 44.5 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
<!--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>Recognize Personal Category Bootstrap Responsive Template | Home</title>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<meta name="keywords" content="Recognize Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template, Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" />
<script>
addEventListener("load", function() {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- //Meta tag Keywords -->
<!-- Custom-Files -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Bootstrap-Core-CSS -->
<link href="css/simpleLightbox.css" rel='stylesheet' type='text/css' />
<link href="css/roadmap.css" rel="stylesheet" type="text/css" />
<!-- Banner-Slider-CSS -->
<link rel="stylesheet" href="css/snow.css">
<link rel="stylesheet" href="css/aos.css">
<link href='css/aos-animation.css' rel='stylesheet prefetch' type="text/css" media="all" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<!-- Style-CSS -->
<link rel="stylesheet" href="css/fontawesome-all.css">
<!-- Font-Awesome-Icons-CSS -->
<!-- /Fonts -->
<link href="//fonts.googleapis.com/css?family=Roboto:100,100i,300,400,400i,500,500i,700,700i,900" rel="stylesheet">
<!-- //Fonts -->
</head>
<body>
<!-- mian-content -->
<header class="index-banner" id="home">
<!-- nav -->
<nav class="main-header d-flex">
<div id="brand">
<div id="logo">
<a href="index.html">
<i class="fas fa-crosshairs"></i>
</a>
</div>
<div id="word-mark">
<h1>
<a href="index.html">Recognize</a>
</h1>
</div>
</div>
<div id="menu">
<div id="menu-toggle">
<div id="menu-icon">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</div>
<ul class="text-center nav-honey">
<li>
<a href="index.html" class="active ">Home</a>
</li>
<li>
<a class="scroll" href="#about">About</a>
</li>
<li>
<a class="scroll" href="#services">Services</a>
</li>
<li>
<a class="scroll" href="#projects">Projects</a>
</li>
<li>
<a class="scroll" href="#contact">Contact</a>
</li>
<li>
<button type="button" class="btn login-btn text-uppercase " data-toggle="modal" data-target="#exampleModalCenter">
Login
</button>
</li>
</ul>
</div>
<div class="clearfix"></div>
</nav>
<!-- //nav -->
<!-- banner -->
<div class="banner_section">
<div class="snow-container">
<div class="snow foreground"></div>
<div class="snow foreground layered"></div>
<div class="snow middleground"></div>
<div class="snow middleground layered"></div>
<div class="snow background"></div>
<div class="snow background layered"></div>
</div>
<div class="banner-info text-uppercase">
<h6 data-aos="fade-right">Introduction to entire WORLD</h6>
<h5 data-aos="fade-right">Hello, my name is Shubham Jha</h5>
<h3 data-text="I'm a Programmer">I'm a Programmer</h3>
<div class="ban-buttons mt-3" data-aos="fade-right">
<a class="btn work scroll" href="#projects">My Work</a>
<a class="btn work scroll active" href="#contact">Here me</a>
</div>
</div>
</div>
<!-- //banner -->
<div class="slider-img ">
<div class="container">
<div class="slider-info">
<h4>Am Web Designer
</h4>
<p>My Passion</p>
</div>
</div>
</div>
</header>
<!-- //header -->
<!--// banner-slider -->
<!-- banner-bottom-wthree -->
<section class="banner-bottom-wthree py-lg-5 py-md-5 py-4" id="about">
<div class="container">
<div class="inner-sec-w3ls py-lg-5 py-4">
<div class="info-about text-center">
<h4 class="sub-tittle-w3">About Me</h4>
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3">Welcome to My website</h3>
<div class="row mt-lg-5 mt-3">
<div class="col-lg-4 progress-info-content text-left">
<div class="progress-one my-lg-5" data-aos="fade-up">
<h4 class="progress-tittle-w3">Web Design</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped" role="progressbar" style="width: 10%" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress-one" data-aos="fade-up">
<h4 class="progress-tittle-w3">Competitive coding</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-success" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-4 progress-info-content text-left">
<div class="progress-one my-lg-5" data-aos="fade-up">
<h4 class="progress-tittle-w3">PHP Development</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-info" role="progressbar" style="width: 50%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress-one" data-aos="fade-up">
<h4 class="progress-tittle-w3">Machine Learning</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-warning" role="progressbar" style="width: 70%" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-4 progress-info-content text-left">
<div class="progress-one my-lg-5" data-aos="fade-up">
<h4 class="progress-tittle-w3">Photography</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-secondary" role="progressbar" style="width: 90%" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress-one" data-aos="fade-up">
<h4 class="progress-tittle-w3">
Internet of things</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--// ab -->
<!-- /services -->
<section class="services py-md-5 py-4" id="services">
<div class="container">
<div class="inner-sec-w3ls py-md-5 py-4">
<h4 class="sub-tittle-w3 text-uppercase text-center">My Services</h4>
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center text-white">What i do</h3>
<div class="price-right">
<div class="tabs">
<ul class="nav nav-pills my-md-5 my-3 justify-content-center" id="pills-tab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="pills-home-tab" data-toggle="pill" href="#pills-home" role="tab" aria-controls="pills-home" aria-selected="true">Service 1</a>
</li>
<li class="nav-item">
<a class="nav-link" id="pills-profile-tab" data-toggle="pill" href="#pills-profile" role="tab" aria-controls="pills-profile" aria-selected="false">Service 2</a>
</li>
</ul>
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab">
<div class="menu-grids mt-4">
<div class="row t-in">
<div class="col-lg-4 service-in text-center" data-aos="flip-up">
<div class="card">
<div class="card-body">
<i class="fas fa-list-ul mb-4"></i>
<h5 class="card-title text-uppercase">Professional Code</h5>
<p class="card-text">Working to make efficient code </p>
</div>
</div>
</div>
<div class="col-lg-4 service-in text-center" data-aos="flip-up">
<div class="card">
<div class="card-body">
<i class="far fa-lightbulb mb-4"></i>
<h5 class="card-title text-uppercase">Creative Ideas</h5>
<p class="card-text">Can hire me for innovative ideas and sensational talks.</p>
</div>
</div>
</div>
<div class="col-lg-4 service-in text-center" data-aos="flip-up">
<div class="card">
<div class="card-body">
<i class="far fa-clone mb-4"></i>
<h5 class="card-title text-uppercase">Web designing</h5>
<p class="card-text">It's my passion to design the web pages</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab">
<div class="menu-grids mt-4">
<div class="row t-in">
<div class="col-lg-4 service-in text-center">
<div class="card">
<div class="card-body">
<i class="far fa-heart mb-4"></i>
<h5 class="card-title">App Development</h5>
<p class="card-text">Working as to develop the realistic and dynamic app.</p>
</div>
</div>
</div>
<div class="col-lg-4 service-in text-center">
<div class="card">
<div class="card-body">
<i class="fas fa-magic mb-4"></i>
<h5 class="card-title">Research</h5>
<p class="card-text">Interested in learning new technical aspects and solving mysteries and puzzles</p>
</div>
</div>
</div>
<div class="col-lg-4 service-in text-center">
<div class="card">
<div class="card-body">
<i class="fas fa-sliders-h mb-4"></i>
<h5 class="card-title">Non Technical aspects</h5>
<p class="card-text">Can hire me for motivational talks.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //services -->
<!-- /experience -->
<section class="experience py-lg-5 py-4" id="experience">
<div class="timeline py-lg-5 py-3">
<h4 class="sub-tittle-w3 text-uppercase text-center">Experience</h4>
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center">Job,Education & Achievements</h3>
<div id="my-timeline"></div>
</div>
</section>
<!-- //experience -->
<!--gallery -->
<section class="gallery py-md-5 py-3" id="projects">
<div class="gallery-inner container py-md-5 pb-3">
<h4 class="sub-tittle-w3 text-uppercase text-center">View all</h4>
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center">My Projects</h3>
<div class="row">
<div class="col-md-4 proj_gallery_grid" data-aos="zoom-in">
<div class="section_1_gallery_grid">
<a title="Donec sapien massa, placerat ac sodales ac, feugiat quis est." href="images/g1.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g1.png" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Recognize</h3>
</div>
</div>
</a>
</div>
<div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Donec sapien massa, placerat ac sodales ac, feugiat quis est." href="images/g2.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g2.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Recognize</h3>
</div>
</div>
</a>
</div>
<div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Donec sapien massa, placerat ac sodales ac, feugiat quis est." href="images/g3.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g3.png" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Recognize</h3>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4 proj_gallery_grid" data-aos="zoom-in">
<div class="section_1_gallery_grid">
<a title="Donec sapien massa, placerat ac sodales ac, feugiat quis est." href="images/g4.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g4.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Recognize</h3>
</div>
</div>
</a>
</div>
<div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Donec sapien massa, placerat ac sodales ac, feugiat quis est." href="images/g5.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g5.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Recognize</h3>
</div>
</div>
</a>
</div>
<div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Donec sapien massa, placerat ac sodales ac, feugiat quis est." href="images/g6.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g6.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Recognize</h3>
</div>
</div>
</a>
</div>
</div>
<div class="col-md-4 proj_gallery_grid" data-aos="zoom-in">
<div class="section_1_gallery_grid">
<a title="Donec sapien massa, placerat ac sodales ac, feugiat quis est." href="images/g7.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g7.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Recognize</h3>
</div>
</div>
</a>
</div>
<div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Donec sapien massa, placerat ac sodales ac, feugiat quis est." href="images/g8.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g8.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Recognize</h3>
</div>
</div>
</a>
</div>
<div class="section_1_gallery_grid" data-aos="zoom-in">
<a title="Donec sapien massa, placerat ac sodales ac, feugiat quis est." href="images/g9.jpg">
<div class="section_1_gallery_grid1">
<img src="images/g9.jpg" alt=" " class="img-fluid" />
<div class="proj_gallery_grid1_pos">
<h3>Recognize</h3>
</div>
</div>
</a>
</div>
</div>
<!--end portfolio-area -->
</div>
<!-- //gallery container -->
</div>
</section>
<!-- //gallery -->
<!--/stats-->
<section class="stats py-lg-5 py-4" id="stats">
<div class="gallery-inner container py-md-5 py-4">
<div class="row mt-lg-5 stats-con text-white">
<div class="col-sm-3 col-6 stats_info counter_grid">
<i class="far fa-lightbulb"></i>
<p class="counter">42</p>
<h4>Projects Done</h4>
</div>
<div class="col-sm-3 col-6 stats_info counter_grid1">
<i class="far fa-heart"></i>
<p class="counter">16</p>
<h4>Satisfied Clients</h4>
</div>
<div class="col-sm-3 col-6 stats_info counter_grid">
<i class="fas fa-magic"></i>
<p class="counter">17</p>
<h4>Awards</h4>
</div>
<div class="col-sm-3 col-6 stats_info counter_grid2">
<i class="far fa-smile"></i>
<p class="counter">12</p>
<h4>Happy Clients</h4>
</div>
</div>
</div>
</section>
<!--//stats-->
<!-- /testimonials -->
<div class="testimonials py-lg-5 py-4" id="clients">
<div class="testimonials-inner container py-lg-4 py-3">
<h4 class="sub-tittle-w3 text-uppercase text-center">QUOTES</h4>
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center">What They Says</h3>
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="testimonials_grid center">
<div class="testimonials_grid-inn text-uppercase">
<i class="fas fa-quote-left"></i>
<p>Education is the most powerful weapon which you can use to change the world.</p>
</div>
<h3>NELSON MANDELA </h3>
<label>South Africa</label>
</div>
</div>
<div class="carousel-item">
<div class="testimonials_grid text-center">
<div class="testimonials_grid-inn text-uppercase">
<i class="fas fa-quote-left"></i>
<p>Education is what remains after one has forgotten what one has learned in school.</p>
</div>
<h3>Albert Einstein
</h3>
<label>Germany</label>
</div>
</div>
<div class="carousel-item">
<div class="testimonials_grid">
<div class="testimonials_grid-inn text-uppercase">
<i class="fas fa-quote-left"></i>
<p>An investment in knowledge pays the best interest.</p>
</div>
<h3>Benjamin Franklin
</h3>
<label>United States</label>
</div>
</div>
<a class="carousel-control-prev test" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="fas fa-long-arrow-alt-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next test" href="#carouselExampleControls" role="button" data-slide="next">
<span class="fas fa-long-arrow-alt-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<!-- //testimonials -->
<!-- /Contact-->
<section class="contact py-lg-5 py-md-5 py-3" id="contact">
<div class="container">
<div class="inner-sec-w3ls py-lg-5 py-3">
<h4 class="sub-tittle-w3 text-uppercase text-center">Find Me</h4>
<h3 class="tittle-w3 text-uppercase mb-lg-5 mb-3 text-center text-white">Contact Me Now</h3>
<div class="contact_grid_right">
<form action="#" method="post">
<div class="row contact_left_grid">
<div class="col-md-6 con-left" data-aos="fade-up">
<div class="form-group">
<input class="form-control" type="text" name="Name" placeholder="" required="">
</div>
<div class="form-group">
<input class="form-control" type="email" name="Email" placeholder="" required="">
</div>
<div class="form-group">
<input class="form-control" type="text" name="Subject" placeholder="" required="">
</div>
</div>
<div class="col-md-6 con-right" data-aos="fade-up">
<div class="form-group">
<textarea id="textarea" placeholder="" required=""></textarea>
</div>
</div>
<div class="sub-honey mx-auto mt-3">
<input class="form-control" type="submit" value="Submit"> </div>
</div>
</form>
</div>
<div class="address row mt-lg-5">
<div class="col-md-4 address-grid" data-aos="flip-up">
<div class="address-info">
<div class="address-left text-center">
<i class="far fa-map"></i>
</div>
<div class="address-right text-center">
<h6 class="my-3">Address</h6>
<p> Patna, BIHAR
</p>
</div>
</div>
</div>
<div class="col-md-4 address-grid" data-aos="flip-up">
<div class="address-info">
<div class="address-left text-center">
<i class="far fa-envelope"></i>
</div>
<div class="address-right text-center">
<h6 class="my-3">Email</h6>
<p>Email :
<a href="shubham0105jha@gmail.com"> shubham0105jha@gmail.com</a>
</p>
</div>
</div>
</div>
<div class="col-md-4 address-grid" data-aos="flip-up">
<div class="address-info">
<div class="address-left text-center">
<i class="fas fa-mobile-alt"></i>
</div>
<div class="address-right text-center">
<h6 class="my-3">Phone</h6>
<p>+916205517063</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //Contact -->
<!--/footer-->
<footer class="footer text-left">
<div class="container py-4 py-sm-5">
<div class="row py-sm-4 py-3">
<div class="col-lg-2 col-md-4">
<ul class="list-footer" data-aos="fade-up">
<li>
<a href="#home" class="nav-link scroll">
Home
</a>
</li>
<li class="my-2">
<a href="#about" class="nav-link scroll">
About
</a>
</li>
<li class="my-2">
<a href="#services" class="nav-link scroll">
Services
</a>
</li>
<li class="mb-2">
<a href="#projects" class="nav-link scroll">
Projects
</a>
</li>
<li>
<a href="#contact" class="nav-link scroll">
Contact Us
</a>
</li>
</ul>
</div>
<div class="col-lg-2 col-md-4 col-sm-6 mt-sm-5">
<ul class="list-footer" data-aos="fade-up">
<li>
<a href="#register" data-toggle="modal" data-target="#exampleModalCenter" class="nav-link scroll">
Login
</a>
</li>
<li class="my-2">
<a href="#" data-toggle="modal" data-target="#exampleModalCenter2" class="nav-link">
Register
</a>
</li>
<li class="my-2">
<a href="#" class="nav-link">
License
</a>
</li>
</ul>
</div>
<div class="offset-lg-4"></div>
<div class="col-lg-4 footer-end-grid mt-md-0 mt-sm-5" data-aos="fade-up">
<h2>
<a href="index.html">
<i class="fas fa-crosshairs"></i> Recognize
</a>
</h2>
</div>
</div>
<hr>
<div class="d-flex justify-content-between pt-lg-3 footer-bottom-cpy">
<div class="copy-right-w3ls">
<p>© 2018 Recognize. All rights reserved | Design by
<a href="https://mail.google.com/mail/u/0/#inbox"> Shubhamjha </a>
</p>
</div>
<div class="social-content pb-md-0 pb-4">
<ul class="social-icons text-center d-flex">
<li class="ml-lg-5">
<a href="#">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-google-plus-g"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!--//footer-->
<!--model-forms-->
<!--/Login-->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header text-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="login px-4 mx-auto mw-100">
<h5 class="text-center mb-4">Login Now</h5>
<form action="#" method="post">
<div class="form-group">
<label class="mb-2">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="" required="">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label class="mb-2">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="" required="">
</div>
<div class="form-check mb-2">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-primary submit mb-4">Sign In</button>
<p class="text-center pb-4">
<a href="#" data-toggle="modal" data-target="#exampleModalCenter2"> Don't have an account?</a>
</p>
</form>
</div>
</div>
</div>
</div>
</div>
<!--//Login-->
<!--/Register-->
<div class="modal fade" id="exampleModalCenter2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header text-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="login px-4 mx-auto mw-100">
<h5 class="text-center mb-4">Register Now</h5>
<form action="#" method="post">
<div class="form-group">
<label>First name</label>
<input type="text" class="form-control" id="validationDefault01" placeholder="" required="">
</div>
<div class="form-group">
<label>Last name</label>
<input type="text" class="form-control" id="validationDefault02" placeholder="" required="">
</div>
<div class="form-group">
<label class="mb-2">Password</label>
<input type="password" class="form-control" id="password1" placeholder="" required="">
</div>
<div class="form-group">
<label>Confirm Password</label>
<input type="password" class="form-control" id="password2" placeholder="" required="">
</div>
<button type="submit" class="btn btn-primary submit mb-4">Register</button>
<p class="text-center pb-4">
<a href="#">By clicking Register, I agree to your terms</a>
</p>
</form>
</div>
</div>
</div>
</div>
</div>
<!--//Register-->
<script src="js/jquery-2.2.3.min.js"></script>
<!-- banner-type-text -->
<script src='js/aos.js'></script>
<script>
AOS.init({
easing: 'ease-out-back',
duration: 1000
});
</script>
<!-- sticky nav bar-->
<script>
$(() => {
//On Scroll Functionality
$(window).scroll(() => {
var windowTop = $(window).scrollTop();
windowTop > 100 ? $('nav').addClass('navShadow') : $('nav').removeClass('navShadow');
windowTop > 100 ? $('ul.nav-honey').css('top', '50px') : $('ul.nav-honey').css('top', '160px');
});
//Click Logo To Scroll To Top
$('#logo').on('click', () => {
$('html,body').animate({
scrollTop: 0
}, 500);
});
// //Smooth Scrolling Using Navigation Menu
// $('a[href*="#"]').on('click', function(e) {
// $('html,body').animate({
// scrollTop: $($(this).attr('href')).offset().top - 100
// }, 500);
// e.preventDefault();
// });
//Toggle Menu
$('#menu-toggle').on('click', () => {
$('#menu-toggle').toggleClass('closeMenu');
$('ul').toggleClass('showMenu');
$('li').on('click', () => {
$('ul').removeClass('showMenu');
$('#menu-toggle').removeClass('closeMenu');
});
});
});
</script>
<!-- //sticky nav bar -->
<!-- Include jQuery Timeline Plugin -->
<script src="js/jquery.roadmap.js"></script>
<script>
$(document).ready(function() {
var events = [{
date: 'Aug 2018 - Present',
content: 'Indian Institute of Information Technology, Pune <small>Proud! to be an IIITian -currently pursuing Bachelor of Technology</small>'
},
{
date: '2016 - 2018',
content: 'SCHOOL of Creative Learning <small>Completed senior secondary Education and worked as a junior scientists.Attended international conference on remote sensing,aeronautics and many more...</small>'
},
{
date: '2016',
content: 'B.D. Public School <small>Completed matriculation with good skills</small>'
},
{
date: '2012 - 2013',
content: 'now it turns for speech and talks <small>Won fist prize in speech and honoured to get rewarded from renowned scholar of Nagaland</small>'
},
{
date: '2012',
content: 'PLATFORM:IOS <small>2ND position in IOS- Dream contest for every science enthusiasts kids in entire world</small>'
},
{
date: 'JULY 2011',
content: 'Science center <small>My Achievement on some large scale-I won state science quiz competiton</small>'
},
{
date: ' MAY 2011',
content: 'B.D. public school <small>My first ever stage talk and then I actually know my qualities.</small>'
},
{
date: '2011',
content: 'Joined B.D. public School <small>for Better secondary Education</small>'
},
{
date: '2008',
content: 'Joined Campion Academy <small>For Better Education</small>'
},
{
date: '2006',
content: 'Achievement <small>my first reward of my life for my excellence in academics</small>'
},
{
date: '2003 - 2005',
content: 'Primary Education <small>From St. Marks High School</small>'
},
{
date: '2001 - 2003',
content: 'Nursery and Preparatory <small>From Junior St. Xavier</small>'
}
];
$('#my-timeline').roadmap(events, {
eventsPerSlide: 6,
slide: 1,
prevArrow: '<i class="fas fa-chevron-left"></i>',
nextArrow: '<i class="fas fa-chevron-right"></i>'
});
});
</script>
<!-- simpleLightbox -->
<script src="js/simpleLightbox.js"></script>
<script>
$('.proj_gallery_grid a').simpleLightbox();
</script>
<!-- //simpleLightbox -->
<!-- stats -->
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.countup.js"></script>
<script>
$('.counter').countUp();
</script>
<!-- //stats -->
<!--/ start-smoth-scrolling -->
<script src="js/move-top.js"></script>
<script src="js/easing.js"></script>
<script>
jQuery(document).ready(function($) {
$(".scroll").click(function(event) {
event.preventDefault();
$('html,body').animate({
scrollTop: $(this.hash).offset().top
}, 900);
});
});
</script>
<script>
$(document).ready(function() {
/*
var defaults = {
containerID: 'toTop', // fading element id
containerHoverID: 'toTopHover', // fading element hover id
scrollSpeed: 1200,
easingType: 'linear'
};
*/
$().UItoTop({
easingType: 'easeOutQuart'
});
});
</script>
<!--// end-smoth-scrolling -->
<!-- //js -->
<script src="js/bootstrap.js"></script>
<CENTER><font color="red">MY CURRENT LOCATION</font></CENTER>
<center> <p><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3777.8475283476278!2d73.75389721437223!3d18.760346366694503!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc2b405ac494d45%3A0xc302bc70566bb0f8!2sIndian+Institute+of+Information+Technology%2C+Pune!5e0!3m2!1sen!2sin!4v1540084211775" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe></p></center>
</body>
</html>