forked from jain-shreyansh/stc-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
842 lines (732 loc) · 45.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="ScreenOrientation" content="autoRotate:disabled">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous" />
<link rel="stylesheet" href="style.css" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="icon" href="./images/stcBLackBG.png" type="image/svg">
<script src="https://kit.fontawesome.com/0d7735c391.js" crossorigin="anonymous"></script>
<title>STC-VIT</title>
<!-- SEO -->
<meta name="description"
content="Official website of Student Technical Community, VIT Vellore. We at Student Technical Community are a bunch of tech enthusiasts working together to empower young minds with new technical skills through various tech talks, workshops and more.">
<meta name="keywords"
content="STC-VIT, STC, MSTC, MSTC-VIT, Student-Technical-Community, Microsoft-Student-technical-community-vit-vellore, Microsoft-Student-technical-community">
</head>
<body>
<div id="load"></div>
<div id="contents">
<section id="landscapeMode" name="landscapeMode">
<div class="container-fluid" style="overflow-x: hidden; max-width: 100vw; max-height: 100vh;">
<div class="row justify-content-center">
<div class="col-10 text-center">
<img src="./images/rotation.webp" alt="auto rotaion" class=""
style="max-width: 100%; max-height: 50vh;filter: invert(100%);opacity: 0.6;">
</div>
</div>
<div class="row justify-content-center">
<div class="col-10">
<h3 class="text-center landscapehead">
Please rotate your device
</h3>
<p class="text-center">
We don't support landscape mode yet. Please go back to potrait mode for best experience
</h5>
</div>
</div>
</div>
</section>
<div data-aos="fade-down" data-aos-easing="linear" data-aos-duration="1000">
<section id="landing_page">
<div class="container-fluid nav_div">
<div class="row justify-content-center">
<div class="col-lg-10 col-md-12">
<nav class="navbar navbar-expand-md navbar-dark">
<a href="#" class="navbar-brand"><img src="svg/stc 2.svg" alt="STC logo"></a>
<button class="navbar-toggler" type="button" onclick="openNav()">
<span class="navbar-toggler-icon" role="button"></span>
</button>
<div class="collapse navbar-collapse" id="navbaritems">
<ul class="navbar-nav ml-auto">
<div data-aos="flip-up" data-aos-duration="2500">
<li class="nav-item">
<a href="./index.html" class="nav-link">Home </a>
</li>
</div>
<div data-aos="flip-up" data-aos-duration="2500">
<li class="nav-item">
<a href="#focus_our" class="nav-link">About Us</a>
</li>
</div>
<div data-aos="flip-up" data-aos-duration="2500">
<li class="nav-item">
<a href="#contact_para" class="nav-link">Contact Us</a>
</li>
</div>
<div data-aos="flip-up" data-aos-duration="2500">
<li class="nav-item">
<a href="./events.html" class="nav-link">Events</a>
</li>
</div>
<div data-aos="flip-up" data-aos-duration="2500">
<li class="nav-item">
<a href="./project.html" class="nav-link">Projects</a>
</li>
</div>
</ul>
</div>
<div id="SideNav" class="sidenavR">
<a href="javascript:void(0)" class="closebtn text-center"
onclick="closeNav()">×</a>
<a href="#landing_page" onclick="closeNav()" class="text-center">Home</a>
<a href="#focus_our" onclick="closeNav()" class="text-center">About Us</a>
<a href="#contact_para" onclick="closeNav()" class="text-center">Contact Us</a>
<a href="./events.html" onclick="closeNav()" class="text-center">Events</a>
<a href="./project.html" onclick="closeNav()" class="text-center">Projects</a>
</div>
</nav>
</div>
</div>
</div>
<div class="container-fluid landing_page_content">
<div class="row justify-content-center">
<div class="col-md-5 col-sm-12 align-self-center" id="landingpage_second">
<img src="svg/landing_pg illustration.svg" alt="STC landing illustration"
style="width: 100%;">
</div>
<div class="col-md-5 col-sm-12" id="landingpage_first">
<div data-aos="fade-right" data-aos-duration="1500">
<h1 class="landing_head">We are STC</h1>
</div>
<div data-aos="fade-left" data-aos-duration="3000">
<p class="landing_para">Student Technical Community is a student community in VIT
Vellore
aimed at enhancing skills of its members in various domains through quality
projects and
events tailored for cutting edge skill development</p>
</div>
</div>
</div>
</div>
<img src="svg/waves.svg" alt="Waves for bg" class="wavesbg">
<div class="container-fluid arrow_class ">
<div class="row ">
<div class="col-12 text-center demo" id=" ">
<a href="#focus_our"><svg width="3em" height="3em" viewBox="0 0 16 16"
class="bi bi-chevron-down" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z" />
</svg></a>
</div>
</div>
</div>
</section>
</div>
<img src="./svg/usethisforcircle.svg" alt="pattern" class="circle" style="position: absolute;right: 0;">
<div data-aos="fade-down" data-aos-easing="linear" data-aos-duration="1000" id="focus_our">
<section id="our_focus">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-center binoculardiv">
<img src="svg/binoculars.svg" alt="binoculars" class="binocularimage">
<h1 class="ourfocusheading">Our Focus</h1>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-5">
<div data-aos="fade-right" data-aos-duration="1500">
<p class="ourfocuspara">Student Technical Community, VIT, is a team of enthusiastic
students
driven by their passion for technology. We have always worked together to empower
students with new technical skills and thus aim to create a tech community
that supports collaboration, creativity, and experimentation.
</p>
</div>
</div>
</div>
<div class="row">
<div class="squaredots">
<img src="svg/squaredots.svg" alt="pattern">
</div>
</div>
</div>
</section>
</div>
<div data-aos="fade-left" data-aos-duration="2000">
<section id="loremipsum" class="mb-5">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-md-5">
<h1 class="ourfocusheading text-center ">Our Activities</h1>
<p class="Lorempara">
Here is a collection of all our projects, events, and Github repositories on which we’ve
worked in the previous years. Our top-notch projects and events separate us from all the
other clubs and chapters in VIT.
</p>
</div>
</div>
</div>
</section>
</div>
<section id="slider">
<input type="radio" name="slider" id="s1" checked>
<input type="radio" name="slider" id="s3">
<input type="radio" name="slider" id="s4">
<label for="s1" id="slide1" style="background: #202743;" ondblclick="pageRedirect()">
<img src="./svg/github_illustration.svg" height="100%" width="100%" class="github"
ondblclick="pageRedirect()">
<i class="fab fa-github d-flex justify-content-center fa-lg"> <span
class="d-flex justify-content-center mb-5" style="font-weight: 300;"> Github </span></i>
</label>
<label for="s3" id="slide3" style="background: #202743;" ondblclick="pageRedirect1()">
<img src="./svg/project illustration.svg" height="100%" width="100%" class="project"
ondblclick="pageRedirect1()">
<i class="fas fa-tasks d-flex justify-content-center fa-lg"><span
class="d-flex justify-content-center mb-5" style="font-weight: 300;">Projects</span></i>
</label>
<label for="s4" id="slide4" style="background: #202743;" ondblclick="pageRedirect2()">
<img src="./svg/events.svg" height="100%" width="100%" class="event" ondblclick="pageRedirect2()">
<i class="far fa-calendar-alt d-flex justify-content-center fa-lg"><span
class="d-flex justify-content-center mb-5" style="font-weight: 300;"> Events</span></i>
</label>
</section>
<section id="slider_mobile">
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active text-center ">
<label for="s1" id="slide1"
style="background: #202743;width: 264px;height: 176px;border-radius: 10px;"
onclick="pageRedirect()">
<img src="./svg/github_illustration.svg" height="100%" width="100%" class="github"
onclick="pageRedirect()">
<i class="fab fa-github d-flex justify-content-center fa-lg p-4"> <span
class="d-flex justify-content-center mb-5 pl-3" style="font-weight: 300;"> Github
</span></i>
</label>
</div>
<div class="carousel-item text-center">
<label for="s3" id="slide3"
style="background: #202743;width: 264px;height: 176px;border-radius: 10px;"
onclick="pageRedirect1()">
<img src="./svg/project illustration.svg" height="100%" width="100%" class="project"
onclick="pageRedirect1()">
<i class="fas fa-tasks d-flex justify-content-center fa-lg p-4"> <span
class="d-flex justify-content-center mb-5 pl-3" style="font-weight: 300;"> Projects
</span></i>
</label>
</div>
<div class="carousel-item text-center">
<label for="s4" id="slide4"
style="background: #202743;width: 264px;height: 176px;border-radius: 10px;"
onclick="pageRedirect2()">
<img src="./svg/events.svg" height="100%" width="100%" class="event"
onclick="pageRedirect2()">
<i class="far fa-calendar-alt d-flex justify-content-center fa-lg p-4"><span
class="d-flex justify-content-center mb-5 pl-3"
style="font-weight: 300;">Events</span></i>
</label>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<img src="./svg/left.svg" alt="previous" class="arrow-left leftArrow">
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<img src="./svg/right.svg" alt="next" class="arrow-right rightArrow">
<span class="sr-only">Next</span>
</a>
</div>
</section>
<div data-aos="fade-up" data-aos-easing="linear" data-aos-duration="1000">
<section id="student_partnerships" class="mt-5">
<div class="container-fluid">
<div class="row">
<div class="col-12 text-center partner_head">
<h1 class="partner_headingtag">Student Partnerships</h1>
</div>
</div>
<div class="row partner_row2">
<div class="col-12 text-center">
<div data-aos="fade-up" data-aos-duration="1000">
<img src="svg/usethisformla.svg" alt="Microsoft Student Ambassador" class="msa_image">
</div>
</div>
</div>
<div class="row justify-content-center partner_row2">
<div class="col-md-6 col-sm-12">
<div class="row justify-content-around" id="ImgAlexaSnap">
<div data-aos="fade-right" data-aos-duration="1500">
<img src="svg/usethisforalexa.svg" alt="alexa student Influencers">
</div>
<div data-aos="fade-left" data-aos-duration="1500">
<img src="svg/usethisforsnapchat.svg" alt="snapchat campus Representatives">
</div>
</div>
</div>
<div class="row d-flex justify-content-center">
<div class="col-md-6 ">
<p class="partners_para ml-2 mr-2">Student Technical Community is proud to have over 11
Microsoft Learn Student Ambassadors, Alexa Student Influencers, and Snapchat Campus
Representatives. These are all student communities in which people from all across
the
world come together to collaborate at events and help other students learn skills
that
will in turn help them reach their career goals. These communities have helped
members
of our club to network with people all from different
sections of the world and gain insights into the various technical breakthroughs
happening at those places. </p>
</div>
</div>
</div>
</section>
</div>
<section class="board" style="position: relative;" id="board">
<img src="./svg/circlenew.svg" alt="pattern" class="circle" style="position: absolute;right: 0;">
<div data-aos="zoom-out-down" data-aos-easing="linear" data-aos-duration="1000">
<div class="container-fluid boardd d-flex justify-content-center align-items-center flex-wrap">
<p class="h2 text-center b_heading">Executive Board 2021-2022</p>
<p class="text-center">
We are proud to announce our extremely talented board for the year 2021-2022. We are sure that
they
will lead our club to even greater heights and a plethora of achievements.
</p>
<div class="container-fluid b_pics">
<div class="row text-center">
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column ">
<img src="./images/board/vaibhav_centre.png" class="img-fluid rounded-circle shadow-lg"
alt="navdeep chawla" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Vaibhav Chopra</p>
<span class="lead">President</span>
</div>
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column ">
<img src="./images/board/Vasu_centre.png" class="img-fluid rounded-circle shadow-lg"
alt="nishant pant" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Vasu Manhas</p>
<span class="lead">VP Tech</span>
</div>
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/nikki1.png" class="img-fluid rounded-circle shadow-lg "
alt="nikhil singh" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Niharika Gupta</p>
<span class="lead" style="overflow: hidden;white-space: nowrap;">VP Management</span>
</div>
</div>
<div class="row">
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/aravind.png" class="img-fluid rounded-circle shadow-lg"
alt="rishabh kumar" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Aravind Harinarayanan</p>
<span class="lead">Logistics and Ops Lead</span>
</div>
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/rishabh.png" class="img-fluid rounded-circle shadow-lg"
alt="yogeswari sahu" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Rishabh Budhia</p>
<span class="lead text-center">PRO and Marketing Lead</span>
</div>
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/deepesh.png" class="img-fluid rounded-circle shadow-lg"
alt="shreyansh jain" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Deepesh Suranjandass</p>
<span class="lead">Finance and Sponsorship Lead</span>
</div>
</div>
<div class="row">
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/yash_centre.png" class="img-fluid rounded-circle shadow-lg"
alt="pankaj shukla" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Yash Singhal</p>
<span class="lead" style="overflow: hidden;white-space: nowrap;">Projects Lead</span>
</div>
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/prajesh_indiranagar ka gunda.png"
class="img-fluid rounded-circle shadow-lg" alt="sanket mohapatra" srcset=""
width="300px" height="300px" />
<p class="h5 mt-4 text-center">Prajesh Kumar</p>
<span class="lead" style="overflow: hidden;white-space: nowrap;">Projects Lead</span>
</div>
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/samganjedi.png" class="img-fluid rounded-circle shadow-lg"
alt="krishna kumar" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Samarthya Jha</p>
<span class="lead" style="overflow: hidden;white-space: nowrap;">Projects Lead</span>
</div>
</div>
<div class="row">
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/anay.png" class="img-fluid rounded-circle shadow-lg"
alt="basil jacob" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Anay Rajguru</p>
<span class="lead" style="overflow: hidden;white-space: nowrap;">Design Head</span>
</div>
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/simpy.png" class="img-fluid rounded-circle shadow-lg"
alt="sri vishwa" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Prateek Devashetti</p>
<span class="lead" style="overflow: hidden;white-space: nowrap;">Design Mentor</span>
</div>
<div
class="col-md-4 col-4 d-flex justify-content-center align-items-center flex-nowrap flex-column">
<img src="./images/board/mihir.png" class="img-fluid rounded-circle shadow-lg"
alt="rohit nair" srcset="" width="300px" height="300px" />
<p class="h5 mt-4">Mihir Mulay</p>
<span class="lead" style="overflow: hidden;white-space: nowrap;">Tech Mentor</span>
</div>
</div>
</div>
</div>
<img src="./svg/boarddots.svg" alt="pattern" class="boarddots" style="margin-bottom: 5vmin;">
</section>
</div>
<div data-aos="fade-down" data-aos-easing="linear" data-aos-duration="1000">
<section id="about_app">
<div class="container-fluid">
<div class="row">
<div class="offset-md-2 col-md-6 col-sm-12 aboutappclass">
<h2 class="aboutappheading">Our App is now available on Google Play</h2>
<p class="anoutapppara">Your one-stop-shop for everything from handpicked resources for various
technical domains to updates on all the happenings of our club. Download now.
</p>
<div class="container-fluid">
<div class="row ">
<div class="col-lg-3 col-md-6 col-sm-12 text-center align-self-center"> <a
href="https://play.google.com/store/apps/details?id=in.stcvit.stcapp&hl=en_IN"
target="_blank"><img src="./svg/GOOGLE PLAY.svg" class="gplayimag"
style="width: 100%; margin-bottom: 3vh;"></a></div>
<div class="col-lg-3 col-md-6 col-sm-12 text-center align-self-center"><img
src="svg/QR Code.png" alt="stc app" class="qrimage"
style="width: 100%; margin-bottom: 3vh;"></div>
</div>
</div>
</div>
<div class="offset-md- col-md-3 aboutappimageclass">
<img src="svg/oneplusfinal.svg" alt="stc app" class="appimage" style="width: 100%;">
</div>
</div>
</div>
</section>
</div>
<div data-aos="flip-left" data-aos-easing="linear" data-aos-duration="1500">
<section class="domains">
<div class="container text-center">
<div class="row d-flex justify-content-center">
<p class="h2 domain_heading">Domains</p>
</div>
<div class="row domain_row_2">
<div class="col-md-4">
<img src="./svg/design_domain.svg" alt="design" srcset="">
<p class="h5">Design</p>
<p class="lead">This Domain is for those whose creativity has no limits. Create Smart and
Intuitive Designs that not only plant your ideas but also makes a statement.</p>
</div>
<div class="col-md-4"><img src="./svg/management_domain.svg" alt="management" srcset="">
<p class="h5">Management</p>
<p class="lead">This Domain is the Backbone of our community. Learn and understand the do's,
don'ts, and intricacies of hosting various events, managing daily operations, creating
effective content and much more.
</p>
</div>
<div class="col-md-4"><img src="./svg/tech_domain.svg" alt="technical" srcset="">
<p class="h5">Technical</p>
<p class="lead">The domain for people who want to venture into the various niches of technology
right from web and app development to forthcoming domains like ML and data science. </p>
</div>
</div>
<section class="domains_mobile_view mr-auto" id="domains_mobile_views">
<div id="carouselExampleInterval" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" data-interval="10000">
<div class="card d-inline-block mr-auto" style="width: 20rem; border: none;">
<img src="./svg/design_domain.svg" class="card-img-top" alt="design">
<div class="card-body mt-4 mobileCard">
<h5 class="card-title font-weight-bold">Design</h5>
<p class="card-text lead">This Domain is for those whose creativity has no
limits. Create Smart and Intuitive Designs that not only plant your ideas
but also makes a statement.
</p>
</div>
</div>
</div>
<div class="carousel-item" data-interval="2000">
<div class="card d-inline-block mr-auto" style="width: 20rem;border: none;">
<img src="./svg/management_domain.svg" class="card-img-top" alt="management">
<div class="card-body mt-4 mobileCard">
<h5 class="card-title font-weight-bold">Management</h5>
<p class="card-text lead">This Domain is the backbone of our community. Learn
and understand the do's, don'ts, and intricacies of hosting various events,
managing daily operations, creating effective content and much more.</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card d-inline-block mr-auto" style="width: 20rem;border: none;">
<img src="./svg/tech_domain.svg" class="card-img-top" alt="technica;">
<div class="card-body mt-4 mobileCard">
<h5 class="card-title font-weight-bold">Technical</h5>
<p class="card-text lead">The domain for people who want to venture into the
various niches of technology right from web and app development to
forthcoming domains like ML and data science.</p>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleInterval" role="button"
data-slide="prev">
<img src="./svg/left.svg" alt="" class="arrow-left">
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleInterval" role="button"
data-slide="next">
<img src="./svg/right.svg" alt="" class="arrow-right" style="padding-bottom: 0.05rem;">
<span class="sr-only">Next</span>
</a>
</div>
</section>
</div>
</section>
</div>
<div data-aos="fade-right" data-aos-easing="linear" data-aos-duration="1000">
<section class="contact_us_page" id="contact_us_page">
<div class="container d-flex justify-content-center align-items-center">
<div class="row ">
<div class="col-md-12">
<div class="text-center">
<p class="h2 contact_us_heading" id="contact_us_heading">Contact Us</p>
<p class="text-muted" id="contact_para" style="font-size: 1rem;">Enter your email address we
will get in touch with you</p>
</div>
<form class="contact_us_form" action="https://formspree.io/f/mleoweya" method="POST">
<div class="form-group">
<label for="formGroupExampleInput">Full Name</label>
<input type="text" class="form-control" id="formGroupExampleInput"
placeholder="Enter your name" name="name" style="width: 100%;" required>
<div class="col-2 d-flex justify-content-center align-items-center">
<img class="img-fluid username" src="./svg/username.svg" style="margin-top: -92px;">
</div>
</div>
<div class="form-group">
<label for="inputEmail3" class="col-form-label">Email</label>
<input type="email" class="form-control" id="inputEmail3" name="_replyto"
placeholder="Email Address" style="width: 100%;" required>
<div class="col-2 d-flex justify-content-center align-items-center">
<img src="./svg/email.svg" alt="" class="img-fluid email"
style="margin-top: -92px;">
</div>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Message</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" name="message"
placeholder="Enter your message" style="width: 100%;" required></textarea>
<div class="col-2 d-flex justify-content-center align-items-center">
<img src="./svg/text.svg" alt="" class="img-fluid textbox"
style="margin-top: -343px;">
</div>
</div>
<div class=" contact_us_button d-flex justify-content-center align-items-center">
<button type="submit"
class="btn btn-lg btn-dark d-flex justify-content-center align-items-center">Submit</button>
</div>
</form>
</div>
</div>
</div>
</section>
</div>
<section class="footer_stc">
<div class="container ">
<div class="row footer_row_one d-flex justify-content-center">
<div class="col-md-4 d-flex justify-content-center">
<div class="col-xs-12">
<ul>
<p class="qlink">
<h4>Quick Links</h4>
</p>
<li><a href="#landing_page">Home</a> </li>
<li><a href="./project.html"> Projects</a></li>
<li><a href="./events.html">Events</a> </li>
<li><a href="#student_partnerships">Student Partnerships</a> </li>
<li><a href="#about_app">STC App</a> </li>
</ul>
</div>
</div>
<div class="col-md-4 d-flex justify-content-center">
<p>
<ul>
<p class="">
<h4 class="d-flex justify-content-center" style="padding-left:1rem;">Get In Touch
</h4>
</p>
<li><img src="./svg/location.svg" alt=""> VIT, Vellore</li>
<li> <a href="#contact_us_page" style="color: white;"><img src="./svg/email_get in touch.svg"
alt=""> Email</li></a>
<li> <a href="#contact_us_page" style="color: white;"><img src="./svg/contact.svg" alt="">
Contact</li></a>
</ul>
</p>
</div>
<div class="col-md-4 d-flex justify-content-center">
<p>
<ul>
<p class="">
<h4 class="d-flex justify-content-center" style="padding: 0 40px 0 0;">Social</h4>
</p>
<li><img src="./svg/insta.svg" alt=""><a href="https://www.instagram.com/stcvit/">Instagram</a>
</li>
<li><img src="./svg/facebook.svg" alt=""><a href="https://www.facebook.com/mstcvit">Facebook</a>
</li>
<li><img src="./svg/linkedin.svg" alt=""><a
href="https://www.linkedin.com/company/micvitvellore/">Linked In</a> </li>
<li><img src="./svg/medium.svg" alt=""><a
href="https://medium.com/student-technical-community-vit-vellore"> Medium</a>
</li>
</ul>
</p>
</div>
</div>
<div class="row footer_row_2 d-flex justify-content-center align-items-center">
<img src="./svg/stc-white 2.png" alt="" class="img-fluid">
</div>
<div class="row footer_row_3 d-flex justify-content-center align-items-center text-center">
<p> ©2021 <span style="color: #5A5AFF;"> Student Technical Community</span> <br> <span
class="text-muted">Designed by STC Design Team</span>
</p>
</div>
</div>
</section>
<section id="footer_mobile">
<div class="container">
<div class="row">
<p class="h4 d-inline-block m-auto pt-5">Quick Links</p>
</div>
<div class="row row_link">
<div class="col-6 d-flex justify-content-center align-items-center p-3">
<ul>
<li class="p-4"><a href="#landing_page" style="color: white;">Home</a></li>
<li class="p-4"><a href="./project.html" style="color: white;"> Projects</a></li>
<li class="p-4"><a href="./events.html" style="color: white;">Events</a></li>
</ul>
</div>
<div class="col-6 d-flex justify-content-center align-items-center">
<ul>
<li class="mb-5" style="margin: -23px 18px 0 0;"><a href="#student_partnerships" style="color: white;overflow: hidden;
white-space: nowrap;">Student Partnerships</a></li>
<li class="mb-5"><a href="#about_app" style="color: white;">STC App</a> </li>
</ul>
</div>
</div>
<div class="row">
<p class="h4 d-inline-block m-auto">Social</p>
</div>
<div class="row d-flex justify-content-center align-items-center">
<div class="icon1 p-4">
<a href="https://www.instagram.com/stcvit/"><img src="./svg/insta.svg" alt=""></a>
</div>
<div class="icon2 p-4">
<a href="https://www.facebook.com/mstcvit"><img src="./svg/facebook.svg" alt=""></a>
</div>
<div class="icon3 p-4">
<a href="https://www.linkedin.com/company/micvitvellore/"><img src="./svg/linkedin.svg" alt=""></a>
</div>
<div class="icon4 p-4">
<a href="https://medium.com/student-technical-community-vit-vellore"><img src="./svg/medium.svg"
alt=""></a>
</div>
</div>
<div class="row">
<p class="h4 d-inline-block m-auto pt-5">Get In Touch</p>
</div>
<div class="row row_get_touch d-flex justify-content-around align-items-center">
<ul>
<li class="p-4"><a href="#contact_us_page" style="color: white;"><img
src="./svg/email_get in touch.svg" alt=""> Email
</li></a>
<li class="p-4"><img src="./svg/location.svg" alt=""> VIT, Vellore</li>
</ul>
<ul>
<li class="pb-5 mb-4"><a href="#contact_us_page" style="color: white;"><img src="./svg/contact.svg"
alt=""> Contact</li></a>
</ul>
</div>
<div class="row footer_row_2 d-flex justify-content-center align-items-center">
<img src="./svg/stc-white 2.png" alt="" class="img-fluid">
</div>
<div class="row footer_row_3 d-flex justify-content-center align-items-center text-center">
<p> ©2021 <span style="color: #5A5AFF;">Student Technical Community</span> <br> <span
class="text-muted">Designed by STC Design Team</span>
</p>
</div>
</div>
</section>
</div>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
crossorigin="anonymous"></script>
<script src="index.js"></script>
<script>
document.onreadystatechange = function () {
var state = document.readyState
if (state == 'interactive') {
document.getElementById('contents').style.visibility = "hidden";
} else if (state == 'complete') {
setTimeout(function () {
document.getElementById('interactive');
document.getElementById('load').style.visibility = "hidden";
document.getElementById('contents').style.visibility = "visible";
}, 1000);
}
}
</script>
<script>
jQuery(document).ready(function () {
jQuery('#loading').fadeOut(2500);
});
</script>
<script>
function pageRedirect() {
window.location.href = "https://github.com/STCVIT";
}
function pageRedirect1() {
window.location.href = "./project.html";
}
function pageRedirect2() {
window.location.href = "./events.html";
}
</script>
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-157523665-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-157523665-1');
</script>
</body>
</html>