forked from Saurav017/Kaushal_TechFest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
721 lines (633 loc) · 36.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google" content="notranslate">
<meta http-equiv="Content-Language" content="en">
<!-- Google Fonts Link -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome Link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Link - Main CSS Link -->
<link rel="stylesheet" href="styles.css">
<title>Kaushal</title>
</head>
<body>
<div class="loader">
<img src="./images/Pulse.svg" alt="pulse loading animation">
<h3>KAUSHAL 3.0</h3>
</div>
<div class="kaushal-website">
<!-- Header Section-->
<header>
<!-- <video autoplay muted loop id="myVideo">
<source src="./images/videoplayback.mp4" type="video/mp4">
</video> -->
<video src="./images/main-compressed.mp4" muted loop autoplay></video>
<div class="overlay"></div>
<!-- Navbar Section -->
<nav>
<div class="nav-container">
<img src="./images/svvvlogo.png" alt="SVVV Logo" />
<div class="menu-toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="nav-menu">
<li><a href="#" class="nav-links">Home</a></li>
<li><a href="#about" class="nav-links">About</a></li>
<li><a href="#gallery" class="nav-links">Gallery</a></li>
<li><a href="https://drive.google.com/file/d/12tS9zKsz_6Wm4ahqlIuhEk3j6XCxJaqv/view?usp=drivesdk" class="nav-links">Committee Members</a>
<li><a href="#footer" class="nav-links">Contact Us</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSfoWWDQocWlNI0xYjWerkQvhLAXxveSJjZDHlhwiGH2bERcCA/viewform"
class="nav-links nav-links-btn">Register</a></li>
</ul>
</div>
</nav>
<!-- Title second -->
<main class="title">
<div class="title-container">
<h1 class="title-heading">KAUSHAL 3.0</h1>
<h3 class="title-subheading">COMPUTER SOCIETY OF INDIA, STATE STUDENT CONVENTION, REGION-III</h3>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfoWWDQocWlNI0xYjWerkQvhLAXxveSJjZDHlhwiGH2bERcCA/viewform"
class="register-btn">Register</a>
<div class="days-remaining"><span>50</span> Days to go</div>
</div>
</main>
<ul class="social">
<li><a
href="https://www.facebook.com/csisbi.indore/&sa=D&source=editors&ust=1634732925224000&usg=AOvVaw0PnaAnlDRIFmV1Qe6IlSmQ"><i
class="stu_icon fab fa-facebook"></i></a></li>
<li><a
href="https://www.linkedin.com/in/csi-svvv-indore-7449561b7/&sa=D&source=editors&ust=1634732925224000&usg=AOvVaw315DcjlL5fZCLSDifl3CRo"><i
class="stu_icon fab fa-linkedin"></i></a></li>
<li><a
href="https://www.instagram.com/csi_svvv/&sa=D&source=editors&ust=1634732925224000&usg=AOvVaw1vDtTbtPfHbp9yLJPAJRSQ"><i
class="stu_icon fab fa-instagram"></i></a></li>
</ul>
</header>
<div class="kaushal-background">
<div id="overlay">
<div class="staranimation">
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
<div id="stars4"></div>
<div id="stars5"></div>
</div>
</div>
<!-- About Section -->
<section id="about" class="about page">
<h1 class="kaushal-heading">About Kaushal 3.0</h1>
<div class="para_v ">
<div class="about-kaushal">
<p class="kaushal_content">
Shri Vaishnav Vidyapeeth Vishwavidyalaya, Indore under the aegis of Shri
Vaishnav Shaikshanik Parmarthik Nyas, Indore (M.P.) is organizing a National Level Computer
Society
of India State
Student Convention, region III – “KAUSHAL-2.0” on the theme of “Digital
Transformation for
Sustainable Development” from 10/12/2020 to 11/12/2020. The objective of this
National
Convention is to provide a phenomenal opportunity for the students to showcase
their
technical
skills, ideas and or implementations as a cherishing outcome in the contribution
to the
Nation’s
Dream of IT superpower globally.
<br><br>
The convention will consisted of various events such as Workshops, Research
publication &
articles, Project Contest,Technical Quiz, Poster Designing, Programming Contest
& Hackathon
.Attractive Prizes Worth Rs 50,000 (Exclusive Awards, Cash Prizes, Speacial
Recognitions,
Recognized Certificates and many more).
</p>
<div class="about-button">
<a href="https://drive.google.com/file/d/12azVQgbkG13BG3ZZ3ZeFc5n5jJBmCOkO/view?usp=drivesdk" class="event-schedule-btn special-btn">Event Schedule</a>
<a href="https://drive.google.com/file/d/12fpvlmdpiuJAtgScDbJnoBaVjO-mxXfN/view?usp=drivesdk" class="rulesreg-btn special-btn">Rules and Regulations</a>
</div>
</div>
<div class="you_tube">
<iframe width="100%" height="80%" src="https://www.youtube.com/embed/tgbNymZ7vqY">
</iframe>
</div>
</div>
</section>
<!-- Event Section -->
<section id="event" class="event">
<h1 class="event-heading">Events</h1>
<div class="event-cards">
<!-- Card 1 -->
<div class="event-card quiz-card">
<h3 class="event-name">Technical Quiz</h3>
<div class="event-main">
<div class="event-row">
<div class="img-div">
<img src="./images/quiz.jpg" />
</div>
</div>
<div class="event-row">
<div class="event-info">
<p class="about-event">The quizzes are based on information technology, information
and
communication technology, and computer sciences. Participants would have to
correctly answer the questions asked in the stipulated time.</p>
<a class="know-more">Know More</a>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Some text in the Modal..</p>
</div>
</div>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="event-card project-card">
<h3 class="event-name">Project Contest</h3>
<div class="event-main">
<div class="event-row">
<div class="img-div">
<img src="./images/project-contest.jpg" />
</div>
</div>
<div class="event-row">
<div class="event-info">
<p class="about-event">The quizzes are based on information technology, information
and
communication technology, and computer sciences. Participants would have to
correctly answer the questions asked in the stipulated time.</p>
<a class="know-more">Know More</a>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Some text in the Modal..</p>
</div>
</div>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="event-card programming-card">
<h3 class="event-name">Programming Contest</h3>
<div class="event-main">
<div class="event-row">
<div class="img-div">
<img src="./images/programming.jpg" />
</div>
</div>
<div class="event-row">
<div class="event-info">
<p class="about-event">The quizzes are based on information technology, information
and
communication technology, and computer sciences. Participants would have to
correctly answer the questions asked in the stipulated time.</p>
<a class="know-more" href="#open-model">Know More</a>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Some text in the Modal..</p>
</div>
</div>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="event-card poster-card">
<h3 class="event-name">Poster Contest</h3>
<div class="event-main">
<div class="event-row">
<div class="img-div">
<img src="./images/poster.jpg" />
</div>
</div>
<div class="event-row">
<div class="event-info">
<p class="about-event">The quizzes are based on information technology, information
and
communication technology, and computer sciences. Participants would have to
correctly answer the questions asked in the stipulated time.</p>
<a class="know-more" href="#open-model">Know More</a>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Some text in the Modal..</p>
</div>
</div>
</div>
</div>
</div>
<!-- Card 5 -->
<div class="event-card research-card">
<h3 class="event-name">Research Contest</h3>
<div class="event-main">
<div class="event-row">
<div class="img-div">
<img src="./images/poster.jpg" />
</div>
</div>
<div class="event-row">
<div class="event-info">
<p class="about-event">The quizzes are based on information technology, information
and
communication technology, and computer sciences. Participants would have to
correctly answer the questions asked in the stipulated time.</p>
<a class="know-more" href="#open-model">Know More</a>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Some text in the Modal..</p>
</div>
</div>
</div>
</div>
</div>
<!-- Card 6 -->
<div class="event-card workshop-card">
<h3 class="event-name">Workshop</h3>
<div class="event-main">
<div class="event-row">
<div class="img-div">
<img src="./images/poster.jpg" />
</div>
</div>
<div class="event-row">
<div class="event-info">
<p class="about-event">The quizzes are based on information technology, information
and
communication technology, and computer sciences. Participants would have to
correctly answer the questions asked in the stipulated time.</p>
<a class="know-more" href="#open-model">Know More</a>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Some text in the Modal..</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Carousel Section -->
<section class="poster">
<div class="mySlider">
<input type="radio" name="slider" class="slide-radio1" checked id="slider_1">
<input type="radio" name="slider" class="slide-radio2" id="slider_2">
<div class="slider-pagination">
<label for="slider_1" class="page1"></label>
<label for="slider_2" class="page2"></label>
</div>
<div class="next control">
<label for="slider_1" class="numb1"> <svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512">
<path
d="M298.3 256L131.1 81.9c-4.2-4.3-4.1-11.4.2-15.8l29.9-30.6c4.3-4.4 11.3-4.5 15.5-.2L380.9 248c2.2 2.2 3.2 5.2 3 8.1.1 3-.9 5.9-3 8.1L176.7 476.8c-4.2 4.3-11.2 4.2-15.5-.2L131.3 446c-4.3-4.4-4.4-11.5-.2-15.8L298.3 256z" />
</svg> </label>
<label for="slider_2" class="numb2"> <svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512">
<path
d="M298.3 256L131.1 81.9c-4.2-4.3-4.1-11.4.2-15.8l29.9-30.6c4.3-4.4 11.3-4.5 15.5-.2L380.9 248c2.2 2.2 3.2 5.2 3 8.1.1 3-.9 5.9-3 8.1L176.7 476.8c-4.2 4.3-11.2 4.2-15.5-.2L131.3 446c-4.3-4.4-4.4-11.5-.2-15.8L298.3 256z" />
</svg> </label>
</div>
<div class="previous control">
<label for="slider_1" class="numb1"> <svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512">
<path
d="M213.7 256L380.9 81.9c4.2-4.3 4.1-11.4-.2-15.8l-29.9-30.6c-4.3-4.4-11.3-4.5-15.5-.2L131.1 247.9c-2.2 2.2-3.2 5.2-3 8.1-.1 3 .9 5.9 3 8.1l204.2 212.7c4.2 4.3 11.2 4.2 15.5-.2l29.9-30.6c4.3-4.4 4.4-11.5.2-15.8L213.7 256z" />
</svg> </label>
<label for="slider_2" class="numb2"> <svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512">
<path
d="M213.7 256L380.9 81.9c4.2-4.3 4.1-11.4-.2-15.8l-29.9-30.6c-4.3-4.4-11.3-4.5-15.5-.2L131.1 247.9c-2.2 2.2-3.2 5.2-3 8.1-.1 3 .9 5.9 3 8.1l204.2 212.7c4.2 4.3 11.2 4.2 15.5-.2l29.9-30.6c4.3-4.4 4.4-11.5.2-15.8L213.7 256z" />
</svg> </label>
</div>
<div class="slider slide_img_01"></div>
<div class="slider slide_img_02"></div>
</div>
</section>
<!-- About College -->
<section id="about-college" class="about-college">
<h1>About SVVV</h1>
<div id="about-image">
<img src="./images/about1.jpg" class="about-img">
<img src="./images/about2.jpg" class="about-img">
<img src="./images/about3.jpg" class="about-img">
</div>
<p>Shri Vaishnav Vidyapeeth Vishwavidyalaya (SVVV) is a private university established under Madhya
Pradesh
Niji Vishwavidyalaya (Sthapana Avam Sanchalan) Adhiniyam in 2015 at Indore. The University has been
established with a vision to be a leader in shaping a better future for mankind through quality
education, training and research.The university speaks high of sustaining the growth of global
societies
by developing socially responsible citizens. The university holds five value pillars of endurance,
excellence, fairness, honesty and transparency to promote value based education.</p>
<p>Some of the objectives of the University are as under:</p>
<ul>
<li>To provide teaching and training in higher education and make provision for research as well as
advancement and dissemination of knowledge.</li>
<li>To ensure world class quality in its offerings and create higher levels of intellectual
abilities.
</li>
<li>To create centres of excellence for research and development for sharing knowledge and its
applications.</li>
</ul>
</section>
<!-- Gallery Section -->
<section id="gallery" class="gallery">
<h1>Gallery</h1>
<div id="gallery-image">
<img src="./images//gallery1.jpg">
<img src="./images//gallery2.jpg">
<img src="./images//gallery3.jpg">
<img src="./images//gallery4.jpg">
<img src="./images//gallery5.jpg">
<img src="./images//gallery9.jpg">
<img src="./images//gallery7.jpg">
<img src="./images//gallery8.jpg">
</div>
</section>
<!-- Sponsor Section -->
<section id="sponsors" class="sponsors">
<div class="sponsor">
<h1 class="ml7">
<span class="text-wrapper">
<span class="letters">Sponsors</span>
</span>
</h1>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
</div>
<div class="sponsor-box">
<div class="sponsor">
<img class="company" src="./images/sponser1.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser2.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser3.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser4.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser5.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser6.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser7.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser8.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser9.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser10.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser11.jpeg">
</div>
<div class="sponsor">
<img class="company" src="./images/sponser12.jpeg">
</div>
</section>
<!-- FAQs Section -->
<section class="faq">
<p class="heading">FAQs</p>
<div class="faqs">
<details>
<summary>Who can participate in Kaushal 3.0 ?</summary>
<p class="text">Students pursuing Btech, BE, Mtech, ME, BCA, MCA, Bsc & other revalent
branch(CS, IT or EC) intrested participants are eligible.</p>
</details>
<details>
<summary>Can a student participate in multiple events ?</summary>
<p class="text">Yes. It depends on student in how many contest he/she had register. For Each
Contest student has to register again.</p>
</details>
<details>
<summary>How can I register for Kaushal 3.0 ?</summary>
<p class="text">Read the Registration Instruction carefully and If cannot then contact any
Student Co-ordinator.</p>
</details>
<details>
<summary>How will I get the Certificate ?</summary>
<p class="text">Please provide your exact details to any of student co-ordinator or office
bearer member.</p>
</details>
<details>
<summary>Is Offline Registration available ?</summary>
<p class="text">No, only online registration is possible. For more information contact the CSI
team.</p>
</details>
</div>
</section>
<!-- Footer Section -->
<section id="footer" class="footer">
<div class="footer-container">
<div class="contact-head">
<div class="contact">
<h2>Contact Us</h2>
</div>
</div>
<div class="main-footer">
<div class="student-co">
<div class="students">
<h3 class="touch-text">Student Co-Ordinator</h3>
</div>
<div class="student_list">
<div class="student_card">
<img class="student_img" src="./images//dummy.png" height="150px" width="150px"
alt="">
<h3 class="position">Akshay Verma</h3>
<p class="phone_no">Chairperson</p>
<div class="stu_socio">
<a href="#"><i class="stu_icon fab fa-github"></i></a>
<a href="#"><i class="stu_icon fab fa-twitter"></i></a>
<a href="#"><i class="stu_icon fab fa-linkedin"></i></a>
</div>
</div>
<div class="student_card">
<img class="student_img" src="./images//dummy.png" height="150px" width="150px"
alt="">
<h3 class="position">Prabhav Khaya</h3>
<p class="phone_no">Vice Chairperson</p>
<div class="stu_socio">
<a href="#"><i class="stu_icon fab fa-github"></i></a>
<a href="#"><i class="stu_icon fab fa-twitter"></i></a>
<a href="#"><i class="stu_icon fab fa-linkedin"></i></a>
</div>
</div>
<div class="student_card">
<img class="student_img" src="./images//dummy.png" height="150px" width="150px"
alt="">
<h3 class="position">Aryan Verma</h3>
<p class="phone_no">Vice Chairperson</p>
<div class="stu_socio">
<a href="#"><i class="stu_icon fab fa-github"></i></a>
<a href="#"><i class="stu_icon fab fa-twitter"></i></a>
<a href="#"><i class="stu_icon fab fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="students">
<h3 class="touch-text">CSI-SB Co-ordinator</h3>
</div>
<div>
<div class="student_card">
<img class="student_img" src="./images//dummy.png" height="150px" width="150px"
alt="">
<h3 class="position">President</h3>
<p class="phone_no">89461321956</p>
<div class="stu_socio">
<a href="#"><i class="stu_icon fab fa-twitter"></i></a>
<a href="#"><i class="stu_icon fab fa-twitter"></i></a>
<a href="#"><i class="stu_icon fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
<!-- <div class="foot-middle-li">
<div class="get-in-touch">
<h3 class="touch-text"></h3>
</div>
<div class="social-media">
<div class="">
<a href="#"> About us </a>
</div>
<div class="">
<a href="#"> Developers </a>
</div>
<div class="">
<a href="#"> Committee Members </a>
</div>
</div>
</div> -->
<!-- contact form -->
<form action="mailto:[email protected]" method="POST" enctype="text/plain">
<div class="contact_item contact-form">
<div class="get-in-touch">
<h3 class="touch-text">Get in Touch</h3>
</div>
<div class="drom">
<input type="text" id="name" class="drom_input" autocomplete="off" placeholder=" "
name="name" />
<label for="name" class="drom_label"> Name </label>
</div>
<div class="drom">
<input type="text" id="email" class="drom_input" autocomplete="off" placeholder=" "
name="email">
<label for="email" class="drom_label"> Email </label>
</div>
<div class="">
<textarea name="" class="textarea_foot" id="" placeholder="Your Message" cols="25"
rows="5"></textarea>
</div>
<div class="foot_btn_head">
<button class="foot_btn" type="submit"> Submit </button>
</div>
</form>
</div>
</div>
<div class="so-ico">
<a class="so-link" href=""><img src="./images/icons/fb1.png" alt=""></a>
<a class="so-link" href=""><img src="./images/icons/insta1.png" alt=""></a>
<a class="so-link" href=""><img src="./images/icons/linkedin.png" alt=""></a>
</div>
<div class="copywrite">
<p>©CSI-SVVV
<span id="year"></span>
| Designed And Developed by Team
<i class="fas fa-arrow-down"></i>
</p>
<hr class="style1">
<hr class="style1">
<div class="dev_list">
<div class="student_card">
<img class="student_img" src="./images/Vedant Chaubey.jpg" height="150px" width="150px"
alt="">
<h3 class="position">Vedant Chaubey</h3>
<p class="phone_no">Developer</p>
<div class="stu_socio">
<a href="#"><i class="stu_icon fab fa-github"></i></a>
<a href="#"><i class="stu_icon fab fa-twitter"></i></a>
<a href="#"><i class="stu_icon fab fa-linkedin"></i></a>
</div>
</div>
<div class="student_card">
<img class="student_img" src="./images/Saurav Purohit.jpg" height="150px" width="150px"
alt="Saurav Purohit">
<h3 class="position">Saurav Purohit</h3>
<p class="phone_no">Developer/ UI Designer</p>
<div class="stu_socio">
<a href="#"><i class="stu_icon fab fa-github"></i></a>
<a href="#"><i class="stu_icon fab fa-twitter"></i></a>
<a href="#"><i class="stu_icon fab fa-linkedin"></i></a>
</div>
</div>
<div class="student_card">
<img class="student_img" src="./images/Anshul Sharma.jpg" height="150px" width="150px"
alt="">
<h3 class="position">Anshul Sharma</h3>
<p class="phone_no">Developer</p>
<div class="stu_socio">
<a href="#"><i class="stu_icon fab fa-github"></i></a>
<a href="#"><i class="stu_icon fab fa-linkedin"></i></a>
<a href="#"><i class="stu_icon fab fa-instagram"></i></a>
</div>
</div>
<div class="student_card">
<img class="student_img" src="./images/Adarsh Gurjar.jpg" height="150px" width="150px"
alt="">
<h3 class="position">Adarsh Gurjar</h3>
<p class="phone_no">Graphics/ Developer</p>
<div class="stu_socio">
<a href="#"><i class="stu_icon fab fa-github"></i></a>
<a href="#"><i class="stu_icon fab fa-twitter"></i></a>
<a href="#"><i class="stu_icon fab fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<script src="script.js"></script>
</body>
</html>