-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
824 lines (771 loc) · 36.5 KB
/
team.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
<!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">
<title>Team@Shaurya2K17</title>
<meta name="description" content="Team" />
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/she/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/she/demo.css" />
<link rel="stylesheet" type="text/css" href="css/she/component.css" />
<script src="js/she/snap.svg-min.js"></script>
<script src="js/events/modernizr.custom.js"></script>
<script type='text/javascript' src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<!--Additional CSS files -->
<link rel="stylesheet" href="css/hover/style.css">
<link rel="stylesheet" href="css/social/style.css">
<!-- //Additional CSS files -->
<script src="js/bootstrap.min.js"></script>
<link href="css/bootstrap.css" type="text/css" rel="stylesheet" media="all">
<link href="css/style.css" type="text/css" rel="stylesheet" media="all">
<!--<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<!-- Custom Theme files -->
<!-- js -->
<script src="js/jquery-1.11.1.min.js"></script>
<!-- //js -->
<!-- start-smoth-scrolling-->
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-91692819-1', 'auto');
ga('send', 'pageview');
</script>
<!--//end-smoth-scrolling-->
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/contact/materialize.css" media="screen,projection" />
<style type="text/css">
/* BackToTop button css */
#scroll {
position:fixed;
right:10px;
bottom:80px;
cursor:pointer;
width:50px;
height:50px;
background-color:#3498db;
text-indent:-9999px;
display:none;
-webkit-border-radius:60px;
-moz-border-radius:60px;
border-radius:60px;
z-index: 99;
}
#scroll span {
position:absolute;
top:50%;
left:50%;
margin-left:-8px;
margin-top:-12px;
height:0;
width:0;
border:8px solid transparent;
border-bottom-color:#ffffff;
}
#scroll:hover {
background-color:#e74c3c;
opacity:1;filter:"alpha(opacity=100)";
-ms-filter:"alpha(opacity=100)";}
#pills li a:hover
{
color: #23527c;
}
.grid a:nth-child(odd) {
margin: 30px 200px -30px 0;
}
div#load_screen{
background: #fff;
opacity: 1;
position: fixed;
z-index:9999;
top: 0px;
width: 100%;
height: 1600px;
}
div#load_screen > div#loading{
color:#FFF;
width:120px;
height:24px;
margin: 300px auto;
}
/* Bounce In */
.hvr-bounce-in {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
-webkit-transform: scale(1.2);
transform: scale(1.2);
-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.hvr-grow {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
/* Grow Shadow */
.hvr-grow-shadow {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: box-shadow, transform;
transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
</style>
<script>
window.addEventListener("load", function(){
var load_screen = document.getElementById("load_screen");
document.body.removeChild(load_screen);
});
</script>
</head>
<body>
<div id="load_screen"><div id="loading"><img src="images/preloader.gif" /></div></div>
<a href="#" id="scroll" title="Scroll to Top" style="display: none;">Top<span></span></a>
<!-- Social Icons -->
<ul id="social_side_links">
<li><a class="hvr-grow-shadow" style="background-color: #3c5a96;" href="https://www.facebook.com/shauryotsavaiet/
" target="_blank"><img src="https://dl.dropboxusercontent.com/u/78039576/CodePen/facebook-icon.png" alt="" /></a></li>
<li><a class="hvr-grow-shadow" style="background-color: #1dadeb;" href="http://twitter.com" target="_blank"><img src="https://dl.dropboxusercontent.com/u/78039576/CodePen/twitter-icon.png" alt="" /></a></li>
<li><a class="hvr-grow-shadow" style="background-color: #1178b3;" href="http://linkedin.com" target="_blank"><img src="https://dl.dropboxusercontent.com/u/78039576/CodePen/linkedin-icon.png" alt="" /></a></li>
</ul>
<!--//Social Icons-->
<!--Register -->
<div id="social_side_links_banner" id="register">
<a href="" data-toggle="modal" data-target="#myModal"><img class="hvr-bounce-in" src="images/register.png" width="200" /></a>
</div>
<!--//Register-->
<!--ticker-wrap-->
<div class="ticker-wrap">
<div class="ticker">
<div class="ticker__item">Registration for the events are now open!!</div>
<div class="ticker__item">IET Lucknow Shauryotsava 2k17</div>
<div class="ticker__item">Registration for the events are now open!! </div>
<div class="ticker__item">IET Lucknow Shauryotsava 2k17</div>
</div>
</div>
<!--//ticker-wrap-->
<!--navigation-->
<!--navigation-->
<!-- Dropdown Structure -->
<ul id="dropdown1" class="dropdown-content">
<li><a href="football.html">Football</a></li>
<li><a href="track.html">Track</a></li>
<li><a href="volleyball.html">VolleyBall</a></li>
<li><a href="field.html">Field</a></li>
<li><a href="badminton.html">Badminton</a></li>
<li><a href="lawntennis.html">Lawn-Tennis</a></li>
<li><a href="tabletennis.html">Table Tennis</a></li>
<li><a href="cricket.html">Cricket</a></li>
<li><a href="carrom.html">Carrom</a></li>
<li><a href="chess.html">Chess</a></li>
<li><a href="khokho.html">Kho-Kho</a></li>
<li><a href="kabaddi.html">Kabaddi</a></li>
<li><a href="taekwondo.html">Taekwondo</a></li>
<li><a href="basketball.html">Basketball</a></li>
</ul>
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper">
<a href="index.html" class="brand-logo center" style="font-family: 'RacingSansOne-Regular'; font-size: 2.2em;text-shadow: 2px 2px 4px #000000">Shauryotsava</a>
<a href="index.html" data-activates="mobile-demo" class="button-collapse"><i class="material-icons" style="text-shadow: 2px 2px 4px #000000">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="events.html" style="text-shadow: 2px 2px 4px #000000">Events</a></li>
<!-- Dropdown Trigger -->
<li><a class="dropdown-button" href="#!" data-activates="dropdown1"><i class="material-icons right" style="text-shadow: 2px 2px 4px #000000">arrow_drop_down</i></a></li>
<li><a href="team.html" style="text-shadow: 2px 2px 4px #000000">Organising Team</a></li>
<li><a href="contact.html" style="text-shadow: 2px 2px 4px #000000">Contact Us</a></li>
</ul>
</div>
</nav>
</div>
<ul class="side-nav" id="mobile-demo">
<li><a href="index.html" class="waves-effect waves-teal">Home</a></li>
<li><a href="events.html" class="waves-effect waves-teal">Events</a></li>
<li class="no-padding">
<ul class="collapsible collapsible-accordion" >
<li class="bold"><a class="collapsible-header waves-effect waves-teal">Events Description</a>
<div class="collapsible-body">
<ul>
<li><a href="football.html">Football</a></li>
<li><a href="track.html">Track</a></li>
<li><a href="volleyball.html">VolleyBall</a></li>
<li><a href="field.html">Field</a></li>
<li><a href="badminton.html">Badminton</a></li>
<li><a href="lawntennis.html">Lawn-Tennis</a></li>
<li><a href="tabletennis.html">Table Tennis</a></li>
<li><a href="cricket.html">Cricket</a></li>
<li><a href="carrom.html">Carrom</a></li>
<li><a href="chess.html">Chess</a></li>
<li><a href="khokho.html">Kho-Kho</a></li>
<li><a href="kabaddi.html">Kabaddi</a></li>
<li><a href="taekwondo.html">Taekwondo</a></li>
<li><a href="basketball.html">Basketball</a></li>
</ul>
</div>
</li>
</ul>
<li><a href="team.html" class="waves-effect waves-teal">Organising Team</a></li>
<li><a href="contact.html" class="waves-effect waves-teal">Contact Us</a></li>
</li>
</ul>
<!--<div class="top-nav">
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"> <span class="jlogo">Shaury</span>otsava </a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!--<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-center cl-effect-15">
<li><a href="index.html" data-hover="Home">Home</a></li>
<li><a href="index.html" data-hover="About">About</a></li>
<li><a href="events.html" data-hover="Events">Events</a></li>
<li><a href="team.html" class="active" data-hover="Team">Team</a></li>
<li><a href="#gallery" data-hover="Gallery">Gallery</a></li>
<li><a href="#news" data-hover="News">News</a></li>
<li><a href="#contact" data-hover="Contact">Contact</a></li>
</ul>
<div class="clearfix"> </div>
</div>
</div>
</nav>
</div>
<!-- script-for sticky-nav -->
<script>
$(document).ready(function() {
$(".button-collapse").sideNav();
$(".dropdown-button").dropdown({ hover: true });
});
</script>
<!-- /script-for sticky-nav -->
<!--navigation-->
<div style="background-color: #666666;">
<div class="container">
<h3 class="title">Organising Team</h3>
<ul class="nav nav-pills nav-justified" id="pills">
<li class="active" style="padding-right: 10px;padding-left: 10px;"><a class="hvr-grow" data-toggle="tab" href="#core" style="border-width: 2px; border-style: solid;border-color: #5BD982;
border-radius: 8px;color: white;text-shadow: 2px 2px 4px #000000;">CORE</a></li>
<li style="padding-right: 10px;padding-left: 10px;"><a class="hvr-grow" data-toggle="tab" href="#event" style="border-width: 2px; border-style: solid;border-color: #5BD982;
border-radius: 8px;color: white;text-shadow: 2px 2px 4px #000000;">EVENTS</a></li>
<li style="padding-right: 10px;padding-left: 10px;"><a class="hvr-grow" data-toggle="tab" href="#marketing" style="border-width: 2px; border-style: solid;border-color: #5BD982;
border-radius: 8px;color: white;text-shadow: 2px 2px 4px #000000;">MARKETING</a></li>
<li style="padding-right: 10px;padding-left: 10px;"><a class="hvr-grow" data-toggle="tab" href="#publicity" style="border-width: 2px; border-style: solid;border-color: #5BD982;
border-radius: 8px;color: white;text-shadow: 2px 2px 4px #000000;">PUBLICITY</a></li>
<li style="padding-right: 10px;padding-left: 10px;"><a class="hvr-grow" data-toggle="tab" href="#publicrelations" style="border-width: 2px; border-style: solid;border-color: #5BD982;
border-radius: 8px;color: white;text-shadow: 2px 2px 4px #000000;">PUBLIC RELATIONS</a></li>
<li style="padding-right: 10px;padding-left: 10px;"><a class="hvr-grow" data-toggle="tab" href="#hospitality" style="border-width: 2px; border-style: solid;border-color: #5BD982;
border-radius: 8px;color: white;text-shadow: 2px 2px 4px #000000;">HOSPITALITY</a></li>
<li style="padding-right: 10px;padding-left: 10px;"><a class="hvr-grow" data-toggle="tab" href="#design" style="border-width: 2px; border-style: solid;border-color: #5BD982;
border-radius: 8px;color: white;text-shadow: 2px 2px 4px #000000;">CREATIVE</a></li>
<li style="padding-right: 10px;padding-left: 10px;"><a class="hvr-grow" data-toggle="tab" href="#tech" style="border-width: 2px; border-style: solid;border-color: #5BD982;
border-radius: 8px;color: white;text-shadow: 2px 2px 4px #000000;">TECH</a></li>
</ul>
<div class="tab-content">
<div id="core" class="tab-pane fade in active">
<section id="grid" class="grid clearfix pull-two" >
<a data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img style="min-height: 310px;" src="img/abhay tyagi.JPG" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>ABHAY TYAGI</h2>
<p>COORDINATOR</p>
</figcaption>
</figure>
</a>
<a data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img style="min-height: 310px;" src="img/defaultgirl.jpg" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>NAMRATA RAINA</h2>
<p>COORDINATOR</p>
</figcaption>
</figure>
</a>
</section>
<section id="grid" class="grid grid-core clearfix pull-one">
<a data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img style="min-height: 310px;" src="img/kunal.jpg" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>KUNAL</h2>
<p>CO-COORDINATOR</p>
</figcaption>
</figure>
</a>
</section>
<section id="grid" class="grid grid-core clearfix">
<a data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img style="min-height: 300px;" src="img/MATULYA MANI KACHHAL.jpg" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>MATULYA MANI KACHHAL</h2>
<p>SPONSORSHIP COORDINATOR</p>
</figcaption>
</figure>
</a>
<a data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/shubham sharma.jpg" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>SHUBHAM SHARMA</h2>
<p>SPONSORSHIP COORDINATOR</p>
</figcaption>
</figure>
</a>
</section>
</div>
<div id="event" class="tab-pane fade">
<section id="grid" class="grid event-grid clearfix">
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/2.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Nebulous</h2>
<p>Pea horseradish azuki bean lettuce.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/4.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Iridescent</h2>
<p>A grape silver beet watercress potato.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/6.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Resonant</h2>
<p>Chickweed okra pea winter purslane.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/8.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Zenith</h2>
<p>Salsify taro catsear garlic gram.</p>
<button>View</button>
</figcaption>
</figure>
</a>
</section>
</div>
<div id="marketing" class="tab-pane fade ">
<section id="grid" class="grid clearfix">
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/2.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Nebulous</h2>
<p>Pea horseradish azuki bean lettuce.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/4.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Iridescent</h2>
<p>A grape silver beet watercress potato.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/6.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Resonant</h2>
<p>Chickweed okra pea winter purslane.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/8.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Zenith</h2>
<p>Salsify taro catsear garlic gram.</p>
<button>View</button>
</figcaption>
</figure>
</a>
</section>
</div>
<div id="publicity" class="tab-pane fade ">
<section id="grid" class="grid clearfix">
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/1.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Crystalline</h2>
<p>Soko radicchio bunya nuts gram dulse.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/3.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Cacophony</h2>
<p>Two greens tigernut soybean radish.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/5.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Languid</h2>
<p>Beetroot water spinach okra water.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/7.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Serene</h2>
<p>Water spinach arugula pea tatsoi.</p>
<button>View</button>
</figcaption>
</figure>
</a>
</section>
</div>
<div id="publicrelations" class="tab-pane fade ">
<section id="grid" class="grid clearfix">
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/1.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Crystalline</h2>
<p>Soko radicchio bunya nuts gram dulse.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/3.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Cacophony</h2>
<p>Two greens tigernut soybean radish.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/5.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Languid</h2>
<p>Beetroot water spinach okra water.</p>
<button>View</button>
</figcaption>
</figure>
</a>
<a href="#" data-path-hover="m 180,34.57627 -180,0 L 0,0 180,0 z">
<figure>
<img src="img/7.png" />
<svg viewBox="0 0 180 320" preserveAspectRatio="none"><path d="M 180,160 0,218 0,0 180,0 z"/></svg>
<figcaption>
<h2>Serene</h2>
<p>Water spinach arugula pea tatsoi.</p>
<button>View</button>
</figcaption>
</figure>
</a>
</section>
</div>
</div>
</div><!-- /container -->
</div>
<script>
(function() {
function init() {
var speed = 250,
easing = mina.easeinout;
[].slice.call ( document.querySelectorAll( '#grid > a' ) ).forEach( function( el ) {
var s = Snap( el.querySelector( 'svg' ) ), path = s.select( 'path' ),
pathConfig = {
from : path.attr( 'd' ),
to : el.getAttribute( 'data-path-hover' )
};
el.addEventListener( 'mouseenter', function() {
path.animate( { 'path' : pathConfig.to }, speed, easing );
} );
el.addEventListener( 'mouseleave', function() {
path.animate( { 'path' : pathConfig.from }, speed, easing );
} );
} );
}
init();
})();
</script>
<!--footer-->
<div class="footer" style="padding-bottom: 80px">
<div class="container">
<p> © 2017 Shauryotsava . All rights reserved | Designed by <a href="https://www.linkedin.com/in/vishal-polley-8b067697" target="_blank">Vishal Polley</a> , <a href="https://www.linkedin.com/in/raghvendra-sharma-722504113" target="_blank">Raghvendra Sharma</a> and <a href="https://www.linkedin.com/in/shubhranshu-maurya-731b20120" target="_blank">Shubhranshu Maurya</a></p>
</div>
</div>
<!--//footer-->
<!--about-->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog ">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" style="font-size:32px;">×</button>
<h3 class="modal-title heading-color" style="text-align:center;color:#a94442"> REGISTRATION FORM </h3>
</div>
<div class="modal-body">
<form class="form-horizontal" role="form" method ="post" action = "database.php" >
<div class="col-md-7 no-padding" style="margin-top:20px;">
<div class="form-group">
<!--List for Male-->
<div class="col-sm-6">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title text-center" style="color:#a94442;">
<a data-toggle="collapse" href="#collapse1" class="" style="color:#a94442;">
<i class="fa fa-male"></i> Events for Male Teams </a>
</h4>
</div>
<div id="collapse1" class="panel-collapse collapse in" style="background-color:#ffe2de">
<div class="panel-body expanded-panel">
<div class="col-sm-6">
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-cricket"><span style="color: black;">Cricket</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-football"><span style="color: black;">Football</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-volleyball"><span style="color: black;">VolleyBall</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-kho-kho"><span style="color: black;">Kho Kho</span></label>
</div>
</div>
<div class="col-sm-6">
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-table-tennis"><span style="color: black;">Table Tennis</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-athletics"><span style="color: black;">Athletics</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-badminton"><span style="color: black;">Badminton</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="M-chess"><span style="color: black;">Chess</span></label>
</div>
</div>
</div>
</div>
</div>
</div>
<!--List for Female-->
<div class="col-sm-6">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title text-center" style="color:#a94442;">
<a data-toggle="collapse" href="#collapse2" class="" style="color:#a94442;">
<i class="fa fa-female"></i> Events for Female Teams </a>
</h4>
</div>
<div id="collapse2" class="panel-collapse collapse in" style="background-color: #cff0ff;">
<div class="panel-body expanded-panel">
<div class="col-sm-6">
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-athletics"><span style="color: black;">Athletics</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-badminton"><span style="color: black;">Badminton</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-chess"><span style="color: black;">Chess</span></label>
</div>
</div>
<div class="col-sm-6">
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-kho-kho"><span style="color: black;">Kho Kho</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-table-tennis"><span style="color: black;">Table Tennis</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" class="register" name="opt[]" value="F-volleyball"><span style="color: black;">Volleyball</span></label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 no-padding" style="margin-top:20px;">
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="name" style="color: black;">Name:</label>
<input type="text" class="form-control" id="name" name = "name" placeholder="Enter Your Name" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="designation" style="color: black;">Designation: </label></br>
<input type="radio" name="designation" value="Student" checked> Student<br>
<input type="radio" name="designation" value="College Coordinator"> College Coordinator<br>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="college" style="color: black;">College:</label>
<input type="text" class="form-control" id="college" name = "college" placeholder="Enter Your College Name" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="city" style="color: black;">City:</label>
<input type="text" class="form-control" id="city" name = "city" placeholder="Enter City of Your College" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="email" style="color: black;">Email:</label>
<input type="email" class="form-control" id="email" name = "email" placeholder="Enter Your Email" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="control-label heading-color" for="mobile" style="color: black;">Mobile:</label>
<input type="text" class="form-control" id="mobile" name = "mobile" placeholder="Enter Your Mobile No." required>
</div>
</div>
<div class="col-sm-12">
<div class="form-group "><hr>
<button type="submit" name = "submit" class="btn btn-default btn-success btn-block"> Register</button>
</div>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
<script type='text/javascript'>
$(document).ready(function(){
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('#scroll').fadeIn();
} else {
$('#scroll').fadeOut();
}
});
$('#scroll').click(function(){
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
</script>
<!-- //Modal Content -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/events/grid.js"></script>
<script>
$(function() {
Grid.init();
});
</script>
<script src="js/bootstrap.js"></script>
<!--Import materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.js"></script>
</body>
</html>