-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
958 lines (806 loc) · 40.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE-edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!--meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes" /-->
<meta name="description" content="" />
<meta name="author" content="" />
<title>The Pixel Snappers </title>
<link rel="icon" type="image/x-icon" href="assets/img/logos/Screenshot 2022-03-02 144241.png" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,900" rel="stylesheet" type="text/css" />
<!--link href="https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic" rel="stylesheet" type="text/css" /-->
<!--link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css" /-->
<!--link href="https://fonts.googleapis.com/css?family=Poppins:100,300,400,700,400italic,700italic" rel='stylesheet' type="text/css" /-->
<link href="https://fonts.googleapis.com/css?family=Raleway::100,300,400,700,400italic,700italic" rel='stylesheet'>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger fade-in-left" href="#page-top">
<img src="assets/img/logos/Screenshot 2022-03-02 144241.png" alt="SB Logo" /></a>
<style>
.circular--square {
border-radius: 50%;
}
</style>
<button class="navbar-toggler navbar-toggler-right fade-in-right" type="button" data-toggle="collapse"
data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation">
Menu
<i class="fas fa-bars ml-1"></i>
</button>
<div class="collapse navbar-collapse fade-in-right" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#features">Features</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#events">Events</a></li>
<!-- <li class="nav-item"><a class="nav-link js-scroll-trigger" href="gallery.html">Exhibition</a></li> -->
<!-- <li class="nav-item"><a class="nav-link js-scroll-trigger" href="">Gallery</a></li> -->
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#team">Team</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel" data-interval="5000"
data-pause="false">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="4"></li>
<!-- <li data-target="#carouselExampleIndicators" data-slide-to="3"></li> -->
</ol>
<div class="carousel-inner" role="listbox">
<!-- Slide One - Set the background image for this slide in the line below -->
<!-- <div class="carousel-item active" style="background-image: url(assets/img/SLider/WEBSITE\ Nature.png)">
<a href="https://www.instagram.com/shutterbugs.mitaoe"><div class="carousel-caption ">
<h2 class="display-4"> </h2>
<p class="lead"></p>
<div class="carousel-button">
<div class="vertical-horizontal-center">
<a href="https://forms.gle/V9eB2jb3Qw9MkkFr8" target="_blank"><button type="button1" class="btn btn-carousel">Participate Now</button></a>
</div>
</div>
<p class="lead"></p>
</div></a>
</div> -->
<!-- Slide Two - Set the background image for this slide in the line below -->
<div class="carousel-item active" style="background-image: url('assets/img/SLider/main1.jpg')">
<a href="https://www.instagram.com/p/CE8tThRAcQn">
<div class="carousel-caption">
<h2 class="display-4-2"><br></h2>
<p class="lead-2"></p>
</div>
</a>
</div>
<!-- Slide Three - Set the background image for this slide in the line below -->
<div class="carousel-item" style="background-image: url('assets/img/SLider/0.png')">
<div class="carousel-caption ">
<h2 class="display-4-3"></h2>
<p class="lead-3"></p>
</div>
</div>
<!-- Slide Four - Set the background image for this slide in the line below -->
<div class="carousel-item" style="background-image: url('assets/img/SLider/main.jpg')">
<div class="carousel-caption ">
<h2 class="display-4-4"></h2>
<p class="lead-4"></p>
</div>
</div>
<div class="carousel-item" style="background-image: url('assets/img/SLider/main2.jpg')">
<div class="carousel-caption ">
<h2 class="display-4-4"></h2>
<p class="lead-4"></p>
</div>
</div>
<div class="carousel-item" style="background-image: url('assets/img/SLider/main4.jpg')">
<div class="carousel-caption ">
<h2 class="display-4-4"></h2>
<p class="lead-4"></p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" 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="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</header>
<!-- About-->
<section class="page-section fadein" id="about">
<div class="container">
<div class="row">
<div class="col-md-7">
<h1 class='text-success'>ABOUT US</h1>
<h2></h2>
<hr>
<p>From the very beginning of the IIT Bhilai, members of the club have showed their dedication and covered all
the events organised inside the institute. We, Pixies the members of TPS, seek to display our love for
photography through the consecutive criticism of our peers, leisure activities that involve photography, and
the promotion of photography in and around the IIT Bhilai campus.
"Photography takes an instant out of time, altering life by holding it still."
</p>
</div>
<div class="col-md-5">
<img class="responsive" src="assets/img/features/ww.png" alt=""> <style>.responsive {
width: 150%;
height: auto;
}</style>
</div>
</div>
</div>
</section>
<!-- Our Features-->
<!--Feature Row1-->
<section class="page-section bg-light" id="features">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Our Features</h2>
<h3 class="section-subheading text-muted"> The Pixel Snappers has a unique hashtag i.e. #tps which
has many post . The ones with unique and creative photographs get featured on the page with a special
mention.</h3>
<!-- Our Features-->
<!--Feature Row1-->
</div>
<div class="container">
<div class="row">
<!-- Feature 1 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/COe1VrxHdy-/">
<img src="assets/img/features/13.png" class="card-feature-img-top" alt="1-1"></a>
<div class="card-body text-center">
<a href="https://www.instagram.com/_sharishth_/">
<h5 class="card-title mb-0">Sharishth </h5>
<div class="card-text text-black-50">Product Photography</div>
</a>
</div>
</div>
</div>
<!-- Feature 2 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CXVbBlgP92s/">
<img src="assets/img/features/2.png" class="card-feature-img-top" alt="1-2"></a>
<div class="card-body text-center">
<a href="https://www.instagram.com/satwik_chow_dary/">
<h5 class="card-title mb-0">Satwik_Chowdary</h5>
<div class="card-text text-black-50">Vanjangi</div>
</a>
</div>
</div>
</div>
<!-- Feature 3 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CVP8_kWAzHE/">
<img src="assets/img/features/3.png" class="card-feature-img-top" alt="1-3"></a>
<div class="card-body text-center">
<a href="https://www.instagram.com/solanky_basant/">
<h5 class="card-title mb-0">solanky_basant</h5>
<div class="card-text text-black-50">Sardar market , Girdikot</div>
</div>
</div>
</div>
<!-- Feature 4 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CUJgfWTPiHO/">
<img src="assets/img/features/4.png" class="card-feature-img-top" alt="1-4"></a>
<div class="card-body text-center">
<a href="https://www.instagram.com/__yashhhhh__07/">
<h5 class="card-title mb-0"> Yash T.
</h5>
<div class="card-text text-black-50">Beauty lies in symmetry</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!--Feature Row 2-->
<div class="container">
<div class="row">
<!-- Feature 1 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CE8tThRAcQn/?utm_source=ig_web_copy_link">
<img src="assets/img/features/5.png" class="card-feature-img-top" alt="2-1"></a>
<div class="card-body text-center">
<a href="https://www.instagram.com/its.arshy/">
<h5 class="card-title mb-0">Arshpreet Singh </h5>
<div id="card-txt">
<div class="card-text text-black-50 ">Ideas are to literature what light is to photography</div>
</div>
</a>
</div>
</div>
</div>
<!-- Feature 2 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CMbuQz3HRTU/">
<img src="assets/img/features/6.png" class="card-feature-img-top" alt="2-2">
</a>
<div class="card-body text-center">
<a href="https://www.instagram.com/an_an_why_a/">
<h5 class="card-title mb-0">Ananya </h5>
<div class="card-text text-black-50">Character, like a photograph, develops in darkness.</div>
</a>
</div>
</div>
</div>
<!-- Feature 3 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CHSoH6SnKI9/">
<img src="assets/img/features/7.png" class="card-feature-img-top" alt="2-3">
</a>
<div class="card-body text-center">
<a href="https://www.instagram.com/me_siddupendem/">
<h5 class="card-title mb-0">Siddartha Pendem </h5>
<div class="card-text text-black-50">baendish</div>
</a>
</div>
</div>
</div>
<!-- Feature 4 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CBaFfIinh_i/">
<img src="assets/img/features/8.png" class="card-feature-img-top" alt="2-4">
<div class="card-body text-center">
<a href="https://www.instagram.com/danampally_1/">
<h5 class="card-title mb-0">Rahul Danampally</h5>
<div class="card-text text-black-50">"Seeing is not enough, you have to feel what you photograph."
Street Photography.</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
<!--Feature Row 3-->
<div class="container">
<div class="row">
<!-- Feature 1 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CBNNTzznXrX/">
<img src="assets/img/features/9.png" class="card-feature-img-top" alt="3-1"></a>
<div class="card-body text-center">
<a href="https://www.instagram.com/sheenuthebest/">
<h5 class="card-title mb-0">sheenuthebest</h5>
<div class="card-text text-black-50">"In every walk with nature one receives far more than he seeks."</div>
</a>
</div>
</div>
</div>
<!-- Feature 2 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CA4qbr6Hfqs/">
<img src="assets/img/features/10.png" class="card-feature-img-top" alt="3-2">
</a>
<div class="card-body text-center">
<a href="https://www.instagram.com/prachir1501/">
<h5 class="card-title mb-0">Prachir Agrawal </h5>
<div class="card-text text-black-50">"Nature's delight showered upon the chaos of urban regime"</div>
</a>
</div>
</div>
</div>
<!-- Feature 3 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CAsMUo7nnA2/">
<img src="assets/img/features/11.png" class="card-feature-img-top" alt="3-3"></a>
<div class="card-body text-center">
<a href="https://www.instagram.com/meabhishekyaduvanshi/">
<h5 class="card-title mb-0">Abhishek Yaduvanshi</h5>
<div class="card-text text-black-50">"Hold hands of your loved ones , you need them"</div>
</a>
</div>
</div>
</div>
<!-- Feature 4 -->
<div class="col-lg-3 col-md-4 col-6">
<div class="card-feature border-0 shadow">
<a href="https://www.instagram.com/p/CSkO-PQj_wj/">
<img src="assets/img/features/12.png" class="card-feature-img-top" alt="3-4"></a>
<div class="card-body text-center">
<a href="https://www.instagram.com/yash.mandawat/">
<h5 class="card-title mb-0">yash.mandawat & Yash T.</h5>
<div class="card-text text-black-50">"You must be the change, you wish to see in the world. "</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="grid-child purple">
<div class="responsive-youtube">
<iframe width="500" height="60" src="https://www.youtube.com/embed/fjtuMhY1KK8" title="YouTube video player"
frameborder="100"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</div>
<Body>
<p style="font-family:Courier; font-size: 140%;">
Meraz'19 the Annual Techno-Cultural fest of IITBhilai was held from November 8-10, 2019. IITs have a rich culture of technical and cultural festivals. IIT Bhilai is elated to join the league with our annual techno-cultural fest.
The fest provided a platform for students to tap their potential and unravel their quiescent talents. Students from various backgrounds and cultures got an opportunity to interact and appreciate one another. It bestowed students with an unforgettable learning experience as MERAZ’19 offered a whole gamut of events that range from IT, Technical, Fashion, Culture & Culinary Arts.
A bunch of fun-filled events like Stand-up Comedy by Aakash Gupta and a 90-minute performance by the band Diara were the chief attractions. The audience got to witness the largest musical showdown of the year, Battle of Bands. Also, the participants engaged in a plethora of challenging technical events like Arena Haste, RoboKabaddi, and The Drone Challenge.
The fest closed with a bang on the last day, with the Viva La Vida, a fashion show and the heated dance showdown In10sity. The audience also witnessed power-packed performances from DJ Shameless Mani and DJ Shanaya. The event ended with a thrill-filled EDM night, which was a night to remember.
The event was a kaleidoscopic platform which showcased the artistic talents of all sorts, in its three-day festival, filled with competitions and dazzling night shows bringing students from more than 100 colleges and institutions across India to a single-stage, to compete, perform and be discovered.
</p>
</Body>
</div>
</div>
<style>
.responsive-youtube {
overflow: hidden;
padding-bottom: 50.5%;
position: relative;
height: 0%;
}
.responsive-youtube iframe {
left: 0;
top: 0;
height: 100%;
width: 100%;
position: absolute;
}
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
}
</style>
<!-- /.row -->
<!-- <div class="row">
<div class="col-lg-3 col-md-4 col-6">
<div class="portfolio-item-0shadow">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal1">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/01-thumbnail.jpg" alt="" />
</a>
<div class="portfolio-caption text-center">
<h5 class="portfolio-caption-heading">Threads</h5>
<div class="portfolio-caption-subheading text-muted">Illustration</div>
</div>
</div>
</div>-->
</div>
</section>
<!-- Events and Workshops-->
<section class="page-section" id="events">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">events & workshops</h2>
<ul class="nav justify-content-center md-pills pills-secondary">
<!-- <li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#panel11" role="tab">Trending Events</a>
</li> -->
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#panel12" role="tab">Ongoing Events</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#panel13" role="tab">Past Events</a>
</li>
</ul>
<!-- <ul class="nav justify-content-center md-pills pills-peach-gradient">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#panel40" role="tab">Blogger</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#panel41" role="tab">Designer</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#panel42" role="tab">Photographer</a>
</li> -->
<!-- Tab panels -->
<div class="tab-content pt-0">
<!-- TODO Add On Going Events Here -->
<!--Panel 1-->
<div class="tab-pane fade in show active " id="panel12" role="tabpanel">
<br>
<div class="card mb-3">
<div class="row no-gutters">
<div class="col-md-6">
<img src="assets/img/features/event.png " class="card-img" alt="...">
</div>
<div class="col-md-6">
<div class="card-body">
<h2 class="card-title text-uppercase"><strong> Treasure Hunt - Perspective Editio <br> </strong></h2>
<p></p>
<p class="card-text-events" style="text-align: center;">
<h4><b>Prize Pool 10,000</b></h4><br>
Get ready for a fresh adventure which will take you through the variou alleys for the campus.
The Pixels Snappers is going to organize a fresh new event, Treasure Hunt - Perspective Edition.
We all are very familiar with the campus but things totally change when we see them with a different perspective.
We invite you to come and experience this with your eyes and win amazing prizes worth 10k.
<br><br>
<b>Rules for Participating :</b><br>
1. You have to register in a team of 3-5 members.<br>
2. Every team will be provided with an image at the starting and they have to find that location and visit the same to find the clue for the next location.<br>
3. On reaching the correct location, you will be able to find a QR code which will be used to find the image of the next location. <br>
4. If any team is found helping another team, that team will be disqualified.<br>
5. If any team tries to hide the QR code kept at various locations, that team will be disqualified.<br>
6. On finding the QR code, you have to send a picture of every team member (except the one who is clicking the picture) to any one of the core members, contact of which will be shared later in the whatsapp group.<br>
7. You will be given 2 hours (4 PM to 6 PM ) and the team who finds the maximum location wins.
<br>
Price distribution<br>
1st team 5000/-<br>
2nd team 3000/-<br>
3rd team 2000/-<br>
<br><br> </p>
<p class="card-text-events">
<p></p>
<strong> Last Date:</strong> 24<sup>th</sup> April, 2022<br>
<strong>Time:</strong> - 4 PM to 6 PM<br>
<strong>Venue :</strong> 29<sup>th</sup> - In Front of the Tech Cafe <br>
<p></p>
<h4><b>Results</b> </h4>
1st Position - Team Purana and Team Prayas<br>
2nd Position - Team Mansion house<br>
3rd Position - Team DTYDHTB<br>
</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdpwQI5f8MZD-tTd9DOUkmu0E_oCfw0exsrUomB02aCwguuOQ/viewform"
class="btn btn-primary btn-lg float-center enabled">Registration open</a><br>
</div>
</div>
</div>
</div>
</div>
<!--/.Panel 2 -->
<!--Panel 3-->
<div class="tab-pane fade" id="panel13" role="tabpanel">
<br>
<!-- Card deck -->
<div class="card-deck">
<div class="card mb-4">
<!--Card image-->
<div class="view overlay">
<img class="card-img-top" src="assets/img/Events/Comp.png" alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title text-center"> Monthly Competition</h4>
<!--Text-->
<p>
<p class="card-texts text-center"><strong> Last Date:</strong> 28<sup>th</sup> Oct, 2020<br>
<strong>Theme:</strong>Work From Home/isolation <br>
<strong>Results On:</strong> 29<sup>th</sup> June,2021 <br>
</p>
<p></p>
<p><a href="link" class="btn btn-primary btn-lg float-center disabled">Registration Closed</a>
<!-- <a href="" target="_blank" class="button">Register</a> -->
</p>
</div>
</div>
<!-- Card -->
<div class="card mb-4">
<!--Card image-->
<div class="view overlay">
<img class="card-img-top" src="assets/img/Events/BlackAndWhite.png" alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<p>
</p>
<h4 class="card-title text-center"> Monthly Competition</h4>
<!--Text-->
<p class="card-texts text-center"><strong> Last Date:</strong> 2<sup>nd</sup> September, 2020<br>
<strong>Theme:</strong> Black And White/Light Painting <br>
<strong>Results On:</strong> 5<sup>th</sup> September,2020 <br>
</p>
<p></p>
<p><a href="link" class="btn btn-primary btn-lg float-center disabled">Registration Closed</a>
<!--<a href="" target="_blank" class="button">Register</a>-->
</p>
<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="card mb-4">
<!--Card image-->
<div class="view overlay">
<img class="card-img-top" src="assets/img/Events/2s.png" alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title text-center">Photography Workshop</h4>
<!--Text-->
<p>
<p class="card-texts text-center"><strong> Last Date:</strong> 2<sup>nd</sup> Aug, 2020<br>
<strong>Theme:</strong> NA <br>
<strong>Results On:</strong> 5<sup>th</sup> Aug,2020 <br>
</p>
<p></p>
<p><a href="link" class="btn btn-primary btn-lg float-center disabled">Registration Closed</a>
<!--<a href="" target="_blank" class="button">Register</a>-->
</p>
</div>
</div>
<!-- Card deck -->
<div class="card-deck">
<!-- Card -->
<div class="card mb-4">
<!--Card image-->
<div class="view overlay">
<img class="card-img img-fluid" src="assets/img/Events/3s.png" alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<p>
</p>
<h4 class="card-title text-center"> Monthly Competition</h4>
<!--Text-->
<p class="card-text text-center"><strong> Last Date:</strong> 2<sup>nd</sup> Apr, 2020<br>
<strong>Theme:</strong> NA <br>
<strong>Results On:</strong> 5<sup>th</sup> Apr,2020 <br>
</p>
<p></p>
<p><a href="link" class="btn btn-primary btn-lg float-center disabled">Registration Closed</a>
<!--<a href="" target="_blank" class="button">Register</a>-->
</p>
<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
</div>
</div>
<!-- Card -->
<div class="card mb-4">
<!--Card image-->
<div class="view overlay">
<img class="card-img-top" src="assets/img/Events/4s.png" alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title text-center">Photography Workshop</h4>
<!--Text-->
<p>
<p class="card-text text-center"><strong> Last Date:</strong> 2<sup>nd</sup> Feb, 2020<br>
<strong>Theme:</strong> Happy Youth <br>
<strong>Results On:</strong> 5<sup>th</sup> Feb, 2020 <br>
</p>
<p></p>
<p><a href="link" class="btn btn-primary btn-lg float-center disabled">Registration Closed</a>
</p>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="card mb-4">
<!--Card image-->
<div class="view overlay">
<img class="card-img-top" src="assets/img/Events/1comp.png" alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title text-center">Mai </h4>
<!--Text-->
<p class="card-text text-center"><strong> Last Date:</strong> 7<sup>th</sup> Nov, 2019<br>
<strong>Theme:</strong> NA <br>
<strong>Results On:</strong> 15<sup>th</sup> Nov, 2019 <br>
</p>
<p></p>
<p><a href="link" class="btn btn-primary btn-lg float-center disabled">Registration Closed</a>
<!--<a href="" target="_blank" class="button">Register</a>-->
</p>
</div>
</div>
<!-- Card -->
</div>
<!-- Card deck -->
</div>
<!--/.Panel 3-->
<!--<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-shopping-cart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">E-Commerce</h4>
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-laptop fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Responsive Design</h4>
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-lock fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Web Security</h4>
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</p>
</div>
</div>
</div>
</section>-->
</div>
</section>
<!-- Exibhition--
<div class="py-5">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid d-block mx-auto" src="assets/img/logos/envato.jpg" alt="" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid d-block mx-auto" src="assets/img/logos/designmodo.jpg" alt="" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid d-block mx-auto" src="assets/img/logos/themeforest.jpg" alt="" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid d-block mx-auto" src="assets/img/logos/creative-market.jpg" alt="" /></a>
</div>
</div>
</div>
</div>-->
<!-- Team-->
<section class="page-section bg-light" id="team">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Our Amazing Team</h2>
<h3 class="section-subheading text-muted">Every Club needs someone at Lead to guide , support and show you the
right path before making a mistake.</h3>
</div>
<div class="row">
<div class="col-lg-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="assets/img/team/teck.png" alt="" />
<h4>Yash Techchandani</h4>
<p class="text-muted">TPS Co-Ordinator</p>
<p class="text-muted">President</p>
<a class="btn btn-dark btn-social mx-2" href="https://www.linkedin.com/in/yash-teckchandani-198490210/"><i
class="fab fa-linkedin-in"></i></a>
<a class="btn btn-dark btn-social mx-2" href="https://www.instagram.com/__yashhhhh__07/"><i
class="fab fa-instagram"></i></a>
</div>
</div>
<div class="col-lg-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="assets/img/team/arsh.png" alt="VedantLachake" />
<h4>Arshpreet Singh</h4>
<p class="text-muted">Core Member</p>
<a class="btn btn-dark btn-social mx-2" href="https://www.linkedin.com/in/arshpreet-singh-4310b2204/"><i
class="fab fa-linkedin-in"></i></a>
<a class="btn btn-dark btn-social mx-2" href="https://www.instagram.com/its.arshy/"><i
class="fab fa-instagram"></i></a>
</div>
</div>
<div class="col-lg-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="assets/img/team/atharv.png" alt="" />
<h4>Atharva</h4>
<p class="text-muted">Core Member </p>
<a class="btn btn-dark btn-social mx-2" href="https://www.linkedin.com/in/atharvshendage/"><i class="fab fa-linkedin-in"></i></a>
<a class="btn btn-dark btn-social mx-2" href="https://www.instagram.com/atharv_.s/"><i
class="fab fa-instagram"></i></a>
</div>
</div>
<div class="col-lg-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="assets/img/team/sudhir.png" alt="" />
<h4>Sudhir Sharma</h4>
<p class="text-muted">Core Member </p>
<p class="text-muted">Full Stack Web Developer </p>
<a class="btn btn-dark btn-social mx-2" href="https://www.linkedin.com/in/sudhir-sharma-4858ab21a/"><i
class="fab fa-linkedin-in"></i></a>
<a class="btn btn-dark btn-social mx-2" href="https://www.instagram.com/sudhir_sharma87/"><i
class="fab fa-instagram"></i></a>
</div>
</div>
<div class="col-lg-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="assets/img/features/amogh.png" alt="" />
<h4>Amogh Joshi </h4>
<p class="text-muted">Core Member</p>
<a class="btn btn-dark btn-social mx-2" href="https://www.linkedin.com/in/amogh-joshi-38244b221/"><i class="fab fa-linkedin-in"></i></a>
<a class="btn btn-dark btn-social mx-2" href="https://www.instagram.com/_a_m_o_g_h____j_o_s_h_i_/"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="col-lg-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="assets/img/team/mandu.png" alt="" />
<h4>Yash Mandawat</h4>
<p class="text-muted">Content Writer</p>
<a class="btn btn-dark btn-social mx-2" href="https://www.instagram.com/yash.mandawat/"><i
class="fab fa-instagram"></i></a>
<a class="btn btn-dark btn-social mx-2" href="https://www.linkedin.com/in/yash-mandawat-659551209/"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<p class="large text-muted">
</p>
</div>
</div>
</div>
</section>
<!-- Contact-->
<section class="page-section" id="contact">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Feel Free to Contact Us</h2>
<div class="align-items-center">
<div class="col-lg my-3 my-lg-0">
<a class="btn btn-light btn-social mx-2" href="https://instagram.com/thepixelsnappers"><i
class="fab fa-instagram"></i></a>
<a class="btn btn-light btn-social mx-2" href="https://business.facebook.com/ThePixelSnappers/"><i
class="fab fa-facebook"></i></a>
</div>
</div>
<p>
</p>
</div>
<div class="text-center">
<div id="success"></div>
<a class="btn btn-primary btn-xl text-uppercase" href="https://formsubmit.co/el/siceka">Send your Message here
</a>
</div>
</div>
</section>
<!-- Bootstrap core JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!-- Contact form JS-->
<script src="assets/mail/jqBootstrapValidation.js"></script>
<script src="assets/mail/contact_me.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>