-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1049 lines (947 loc) · 50.8 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">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>E-Cell NITJ</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/line-icons.css">
<link rel="stylesheet" href="assets/css/slicknav.css">
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/owl.theme.css">
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<link rel="stylesheet" href="assets/css/nivo-lightbox.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/3dtext_rot.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" integrity="sha512-tS3S5qG0BlhnQROyJXvNjeEM4UpMXHrQfTGmbQ1gKmelCxlSEBUaxhRBj/EFTzpbP4RVSrpEikbmdJobCvhE3g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="assets/css/exmplee.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style type="text/css">
#intro {
font-family: Comic Sans MS;
font-size: 20px;
}
</style>
<link rel="stylesheet" href="assets/css/new.css">
</head>
<body>
<header id="header-wrap">
<div class="carousel_know">
<div class="knowmore_carousel">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner carousel">
<div class="item active" data-interval="5000">
<img src="assets/img/knm_slshow/one.jpg" alt="s">
</div>
<div class="item">
<img src="assets/img/knm_slshow/two.jpg" alt="C">
</div>
<div class="item ">
<img src="assets/img/knm_slshow/three.jpg" alt="N">
</div>
</div>
</div>
<div class="know_more text-nowrap ">
<h1>ENTREPRENEURSHIP CELL</h1>
<h1>NIT JALANDHAR</h1>
<center>
<h3 class="wordCarousel">
<div>
<!-- Use classes 2,3, or 4 to match the number of words -->
<ul class="flip4">
<li>SUCCESS </li>
<li>EMPOWERING</li>
<li>MINDS,</li>
<li>ENGAGING </li>
</ul>
</div>
</h3>
</center>
<a href="#director_mssg" class="nav-link">
<button type="button" class="btn btn-outline-primary">Know More</button></a>
</div>
</div>
</div>
<!-- div id="hero-area" class="hero-area-bg">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<!-- <div class="contents text-center">
<h4 class="head-title wow fadeInUp">E-Cell <br> NIT Jalandhar</h4>
<div class="header-button wow fadeInUp" data-wow-delay="0.3s">
</div>
</div> -->
<!-- <div class="img-thumb text-center wow fadeInUp" data-wow-delay="0.6s">
<a href="esummit/esummit main.html" target="_blank" >
<img class="img-fluid" src="assets/img/hero1.png"alt=""></a>
</div>
<br><br><br>
</div>
</div>
</div>
</div> -->
<nav class="navbar navbar-expand-md bg-inverse fixed-top scrolling-navbar">
<div class="container">
<a href="https://www.nitj.ac.in/ecell/" class="navbar-brand"><img src="assets/img/logo.png"
class="ecell_logo" alt="logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="lni-menu"></i>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto w-100 justify-content-end clearfix">
<li class="nav-item active">
<a class="nav-link" href="#hero-area">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#feature">
What Are We
</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="#Upcoming_Events">
Upcoming Events
</a>
</li> -->
<!-- <li class="nav-item">
<a class="nav-link" href="esummit/esummit main.html">
E-SUMMIT'19
</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="#Past_Events">
Events
</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link" href="#blog">
Initiatives
</a>
</li>
-->
<li class="nav-item">
<a class="nav-link" href="#portfolios">
Gallery
</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link" href="#strategies">
Extras
</a>
</li>
-->
<li class="nav-item">
<a class="nav-link" href="team.html">
Team
</a>
<li class="nav-item">
<a class="nav-link" href="#contact">
Contact
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="row" id="director_mssg">
<div class="col-lg-6">
<div class="inner-img">
<img class="director-photo" src="assets/img/Director_of_NITJ.png" alt="">
</div>
</div>
<div class="col-lg-5" id="director-msg-container">
<br><br><br><br>
<h1>Message From Our Honourable Director</h1>
<br>
<p> We have come a long way since last few years but there is a long way to go, heights to reach and
responsibilities to carry. This institute has germinated various seeds in the field of
entrepreneurship and with the launch of such events under such dedicated club we aim at growing at
an exponential pace. But as it quoted "facts not at all matter, perception is everything". We need
presentation of our Institute, what we are known for or what good we are doing. An Institute can
earn Outstanding reputation through its great perception in the Community.</p>
</div>
</div>
<!-- ? faculty section -->
<section id="services" class="section-padding bg-gray">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Message From Faculity</h2>
</div>
</div>
<div class="container mt-5">
<!-- ! card start -->
<div class="row d-flex justify-content-center shadow bg-body rounded mt-5">
<div class="col-md-20">
<div class="card p-3 py-4" >
<div class="text-center">
<img src="https://www.nitj.ac.in/images/faculty/1702271541.jpg" width="120" height="120" class="rounded-circle">
</div>
<div class="text-center mt-3">
<span class="bg-secondary p-1 px-4 rounded text-white">Patron</span>
<h5 class="mt-2 mb-0"><strong>Dr. S J S Bedi</strong></h5>
<span>Associate Professor- Hum. & Mgt.</span>
<div class="px-4 mt-1">
<p class="fonts">
E Cell has contributed a lot in developing the entreprenuerial mindset among students. Its Alumni Anmol Sharma (Founder Finlight) is one of the India's top finance educator with over 5 Lakh followers over various social media platforms.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row d-flex justify-content-center shadow bg-body rounded mt-5">
<div class="col-md-20">
<div class="card p-3 py-4" >
<div class="text-center">
<img src="https://www.nitj.ac.in/images/faculty/1801199811.jpg" width="120" height="120" class="rounded-circle">
</div>
<div class="text-center mt-3">
<span class="bg-secondary p-1 px-4 rounded text-white">ChairMan</span>
<h5 class="mt-2 mb-0"><strong>LP Singh</strong></h5>
<span>Associate Professor- IPE</span>
<div class="px-4 mt-1">
<p class="fonts">
ECell doesn't only provide the knowledge of entrepreneurship but it also provide efficacious platform for networking and interaction. We also encourage our students to work towards creating eco friendly solutions for various environmenal related problems.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row d-flex justify-content-center shadow bg-body rounded mt-5">
<div class="col-md-20">
<div class="card p-3 py-4" >
<div class="text-center">
<img src="https://www.nitj.ac.in/images/faculty/18122755708.jpg" width="120" height="120" class="rounded-circle">
</div>
<div class="text-center mt-3">
<span class="bg-secondary p-1 px-4 rounded text-white">Coordinator</span>
<h5 class="mt-2 mb-0"><strong>Dr. Gyan Prakash</strong></h5>
<span>Assisstant Professor - Hum & Mgt.</span>
<div class="px-4 mt-1">
<p class="fonts">
E Cell doesn't only teach student about different aspects of a business through various events and seminars. But It also guide and promote entrepreneurial ideas and provide resources to help them establish, nurture and run their own startup
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="feature">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="text-wrapper">
<div>
<h2 class="title-hl wow fadeInLeft" data-wow-delay="0.3s">We Are Helping To Create <br>
Businesses</h2>
<p class="mb-4">At Entrepreneurship Cell, NIT Jalandhar, we aim to encourage the entrepreneurial spirit among the youth by organising Entrepreneurship Awareness Camps, Entrepreneurship Development Programmes and Faculty Development Programmes within the campus. We aim to build a community which creates an entrepreneurial culture so that the upcoming youth can respond effectively to the emerging challenges and opportunities both at the national and international levels. As a community, we aim to provide our expertise in intellectual property rights, patent search, etc. for the upcoming entrepreneurs, to guide and assist prospective entrepreneurs on various aspects such as preparing project reports, obtaining project approvals, loans and facilities from agencies of support system, etc. We also conduct guest lectures and skill development training programs for the students to continue building their innovative minds.</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 padding-none feature-bg">
<div class="feature-thumb">
<div class="feature-item wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="300ms">
<div class="icon">
<i class="lni-microphone"></i>
</div>
<div class="feature-content">
<h3>What We Do</h3>
<p>We at E-Cell NITJ take initiatives to group together various entrepreneurial brains
to collaborate, innovate and create solutions for the betterment of society.</p>
</div>
</div>
<div class="feature-item wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="500ms">
<div class="icon">
<i class="lni-users"></i>
</div>
<div class="feature-content">
<h3>Why We Do</h3>
<p>E-cell NITJ aspires to develop the required knowledge,skills and spirit of leadership
in students to understand the changing world to help, face and solve the enormous
obstacles and problems dwelling in the society now and in the coming future, through
the Entrepreneurial Spirit.</p>
</div>
</div>
<div class="feature-item wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="700ms">
<div class="icon">
<i class="lni-medall-alt"></i>
</div>
<div class="feature-content">
<h3>How We Do</h3>
<p>We contact the well established entrepreneurs for inspiration , use the learning to
conduct various events for the growth of curious entrepreneur brains at our
institute. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- upcoming events section -->
<!-- <section id="pricing" class="section-padding bg-gray">
<div class="container">
<br><br><br>
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Upcoming Events</h2>
<div id="intro">Our Steps To Achieve The Vision We Have</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="0.3s">
<div class="services-content">
<p>
<h3><a href="#">Guest Lecture</a></h3>
<ul>
<li><a href="https://www.linkedin.com/in/sandeep-jain-b3940815"><strong>Mr. Sandeep
Jain</strong></a></li>
<li>Founder & CEO, <strong>GeeksForGeeks</strong></li>
<li>11th April 2019, 11:15 AM</li>
</ul>
<br />
</p>
<div class="services-content">
<h3><a href="#">IPL Auction</a></h3>
<p>
<ul>
<li><strong>13th April 2019, 10:00 AM</strong></li>
</ul>
</p>
</div>
</div>
<br />
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="0.6s">
<div class="services-content">
<h3><a href="#">One Day CEO Challenge</a></h3>
<p>
<ul>
<li>13th April 2019, 2:30 PM</li>
</ul>
</p>
</div>
<br />
<div class="services-content">
<p>
<h3><a href="#">Guest Lecture</a></h3>
<ul>
<li><a href="https://www.linkedin.com/in/aditya-save-3b84461"><strong>Mr. Aditya
Save</strong></a></li>
<li>Co-founder , <strong>Agilio</strong></li>
<li>14th April 2019, 11:00 AM</li>
</ul>
<br />
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="0.9s">
<div class="services-content">
<h3><a href="#">B-Quiz</a></h3>
<p>
<ul>
<li><strong>14th April 2019, 2:00 AM</strong></li>
</ul>
</p>
</div>
<br />
<div class="services-content">
<p>
<h3><a href="#">Guest Lecture</a></h3>
<ul>
<li><a href="https://www.linkedin.com/in/rohan-dhupar"><strong>Mr. Rohan
Dhupar</strong></a></li>
<li></strong></li>
<li>Kaggle Expert & Data Scientist</li>
<li>14th April 2019, 4:00PM</li>
</ul>
<br />
</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- ?Upcoming Events Section -->
<!-- <section id="slider" class="pt-5">
<div class="container">
<h1 class="text-center pb-4 text-black"><b>Our Events</b></h1>
<div class="events_section">
<div class="owl-carousel">
</div>
</div>
</div>
</section> -->
<!-- <section id="Upcoming_Events" class="section-padding bg-gray">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Upcoming Events</h2>
<div id="intro">Our Proud Moments & Achievements</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 col-xs-12" >
<div class="services-item wow fadeInRight" data-wow-delay="0.9s">
<div class="services-content">
<h3 style="text-align: center"><a href="thunderdome/index.html">Trading Thunderdome</a></h3>
<p>
<br /><br />
<img style="padding: 2px " src="thunderdome/images/All%20sponsor%20Poster.png" height="400px" />
</p>
<a href="http://forms.gle/BQKmjrD3Yc7jPfVdA" target="_blank" class="register">Register Now </a>
</p>
</div>
</div>
</div>
</div>
</section>
! End upcoming event Section -->
<!-- ? Past Events Section -->
<section id="Past_Events" class="section-padding bg-gray">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Past Events</h2>
<div id="intro">Our Proud Moments & Achievements</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 col-xs-12" >
<div class="services-item wow fadeInRight" data-wow-delay="0.9s">
<div class="services-content">
<h3 style="text-align: center"><a href="thunderdome/index.html">Trading Thunderdome</a></h3>
<p>
<p class="p-large">A beginner-friendly trading competition to test your skills and learn about the Crypto Market. The goal is to achieve the highest return on investment within a set time frame, and prizes are often awarded to the top performers.</p>
<br /><br />
<img style="padding: 2px " src="thunderdome/images/All%20sponsor%20Poster.png" height="400px" />
</p>
<!-- <a href="http://forms.gle/BQKmjrD3Yc7jPfVdA" target="_blank" class="register">Register Now </a> -->
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12" >
<div class="services-item wow fadeInRight" data-wow-delay="0.9s">
<div class="services-content">
<h3><a href="#">
Case Studies Competition</a></h3>
<p>
<ul>
<li>The Entrepreneurship Cell of Dr. B R Ambedkar National Institute of Technology, Jalandhar is planning to conduct the Business Case Study Competition in which Participant Teams have to submit their Case study on the Pre-decided Problem Statement related to Entrepreneurship.</li>
</ul>
<br /><br />
<img src="assets/img/Cause&Consequence.jpeg" height="250" />
</p>
<!-- <a href="https://forms.gle/sePjjPrcPRFbr89M9 " target="_blank" class="register">Register Now </a> -->
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12" >
<div class="services-item wow fadeInRight" data-wow-delay="0.9s">
<div class="services-content">
<h3><a href="#">Blockchain X Blocktrain</a></h3>
<p>
<ul>
<li><a href="https://www.linkedin.com/in/ajithkarimpana/?originalSubdomain=in"><strong>Mr. Harsh Ghodkar</strong></a></li>
<li>Co-Founder of
<strong>Blockchain.info</strong></li>
<li>Mr. Harsh Ghodkar, Co-Founder of
Blockchain.info, an informative platform
Providing Content related to BlockChain.
The event started with our guest speaker's
warm welcome and a brief Intro by an E-cell
Representative.
At the end of the Session, We have one
small doubt Session with a guest speaker
Session:</li>
</ul>
<br /><br />
<img src="assets/img/Blocktrain.jpeg" height="180" />
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12" >
<div class="services-item wow fadeInRight" data-wow-delay="0.9s">
<div class="services-content">
<h3><a href="#">E-SUMMIT 2019</a></h3>
<p>
<ul>
<li><strong>Indian Strength</strong></li>
<li><strong>Student Mart</strong></li>
<li><strong>Lugo</strong></li>
<li><strong>FoodPixel</strong></li>
<li><strong>NITovators</strong></li>
</ul>
<br /><br />
<img src="assets/img/esmit.jpg" height="275" />
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12 ">
<div class="services-item wow fadeInRight" data-wow-delay="0.9s">
<div class="services-content">
<h3><a href="#">StartUp Stories</a></h3>
<p>
<ul>
<li><strong>Indian Strength</strong></li>
<li><strong>Student Mart</strong></li>
<li><strong>Lugo</strong></li>
<li><strong>FoodPixel</strong></li>
<li><strong>NITovators</strong></li>
</ul>
<br /><br />
<img src="assets/img/SS.png" height="275" />
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12 ">
<div class="services-item wow fadeInRight" data-wow-delay="1.5s">
<div class="services-content">
<h3><a href="#">Startup Yatra, road to TiECON Chandigarh 2018</a></h3>
<p><br /><br /><br />Witnessed the participation of many entrepreneurs, mentors, innovators,
investors, startups, educationists, journalists, policy makers
<br /><br /><br /><br />
<img src="assets/img/M5.png" height="155" />
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="0.3s">
<div class="services-content">
<h3><a href="#">Guest Lecture</a></h3>
<p>
<ul>
<li><a href="https://www.linkedin.com/in/ajithkarimpana/?originalSubdomain=in"><strong>Mr.
Arjun Chakravarti</strong></a></li>
<li>Founder, <strong>TrakInvest: </strong>A virtual trading <br /> platform</li>
<li>Organized by E-Cell at techNITi on February 2019</li>
</ul>
<br />
<img src="assets/img/gl1.jpg" height="300" />
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="0.6s">
<div class="services-content">
<h3><a href="#">Guest Lecture</a></h3>
<p>
<ul>
<li><a href="https://www.linkedin.com/in/raghav009/"><strong>Mr. Raghav
Sharma</strong></a></li>
<li>Founder, <strong>Xovian</strong> Research and Technologies Pvt. Ltd.</li>
<li>Alumni of NIT Jalandhar</li>
</ul>
<br /><br />
<img src="assets/img/GL 2.png" height="300" />
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="1.2s">
<div class="services-content">
<h3><a href="#">Guest Lecture & Workshop</a></h3>
<p>
<ul>
<li><a href="https://www.linkedin.com/in/manish-saini-7974ba10/"><strong>Mr. Manish
Saini</strong></a></li>
<li>Founder, <strong>Locus Learning Academy</strong> </li>
<li>On <strong>“Idea Generation and Validation”</strong></li>
<li>A social Entrepreneur</li>
<li>Alumni of NIT Jalandhar</li>
</ul>
<br />
<img src="assets/img/GL 3.png" height="300" />
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="1.8s">
<div class="services-content">
<h3><a href="#">Guest Lecture</a></h3>
<p>
<ul>
<li><a href="https://www.linkedin.com/in/umeshrathore/"><strong>Mr. Umesh
Rathod</strong></a></li>
<li>Mentor at Atal Innovation Mission</li>
<li>Lecture on “The fun of being in a startup”</li>
<li>A startup speaker and author</li>
</ul>
<br /><br />
<img src="assets/img/M6.png" height="300" />
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ! Past events ends here -->
<section id="portfolios" class="section-padding">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Gallery</h2>
<div id="intro">A Little Glimpse Captured By The Camera</div>
</div>
<div class="row">
<div class="col-md-12">
</div>
</div>
<div id="portfolio" class="row">
<div class="col-lg-4 col-md-6 col-xs-12 mix development print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/CNC_3.jpg" alt=""/>
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/CNC_3.jpg" ><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Cause and Consequence</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/CNC_1.jpg" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/CNC_1.jpg"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Cause and Consequence</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/CNC_2.jpg" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/CNC_2.jpg"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Cause and Consequence</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/CNC_4.jpg" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/CNC_4.jpg"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Cause and Consequence</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/CNC_5.jpg" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/CNC_5.jpg"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Cause and Consequence</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/Blocktrain_pic.jpeg" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/Blocktrain_pic.jpeg"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">BlockTrain Session</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/team_meet.jpeg" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/team_meet.jpeg"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Team Meet</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/finlight_students.jpeg" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/finlight_students.jpeg"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Session on student finance</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/g1.png" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/g1.png"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">StartUp Seminar</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix design print">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/g2.png" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/g2.png"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Guest Lecture by Mr. Umesh Rathod</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/g3.png" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/g3.png"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">NITovators</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development design">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/g4.png" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/g4.png"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Startup Yatra, road to TiECON Chandigarh 2018</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix development">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/g7.png" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/g7.png"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">StartUp Stories</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 mix print design">
<div class="portfolio-item">
<div class="shot-item">
<img src="assets/img/g8.png" alt="" />
<div class="single-content">
<div class="fancy-table">
<div class="table-cell">
<div class="zoom-icon">
<a class="lightbox" href="assets/img/g8.png"><i
class="lni-eye item-icon"></i></a>
</div>
<a href="#">Workshop by Mr. Manish Saini</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="clients" class="section-padding bg-gray">
</div>
<section id="contact"></section>
<div class="footer-area ptb bg-footer parallax"><br></br>
<div class="container">
<div class="row">
<div class="col-lg-5">
<div class="am">
<div class="f-logo">
<img class="footer_logo" src="assets/img/logo.png" alt="">
</div>
</div>
</div>
<div class="col-lg-7">
<div class="contact-right-area wow fadeIn">
<h2 class="text-primary">Contact Us</h2>
<div class="contact-right">
<div class="single-contact">
<div class="contact-icon">
<i class="lni-map-marker"></i>
</div>
<p><a
href="https://www.google.com/maps/place/Dr.+B.R.+Ambedkar+National+Institute+of+Technology/@31.3961507,75.5331679,17z/data=!3m1!4b1!4m5!3m4!1s0x391a51d30c180edf:0x5b7633718d17ef33!8m2!3d31.3961507!4d75.5353566">ADDRESS:
Dr B R Ambedkar National Institute of Technology Jalandhar Punjab , Pin -
144011</a></p>
</div>
<div class="single-contact">
<div class="contact-icon">
<i class="lni-envelope"></i>
</div>
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSfLGcvDmklbxd3UWmyxDHXFVfqMmApaaW6QPMcdRYe9oyK3IA/viewform">MESSAGE
US</a>
</div>
<div class="single-contact">
<div class="contact-icon">
<i class="lni-phone-handset"></i>
</div>
<p>Phone: +91 62841 64552</p>
</div>
</div>