-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
792 lines (629 loc) · 33.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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Udghosh 2018</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<link rel="shortcut icon" href="images/logo.png" type="image/x-icon">
<link rel="icon" href="ud.png">
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Audiowide' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Average Sans' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<style>
.dropbtn {
color: white;
padding: 0;
font-size: 10px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #404345 ;
font-size: 12px;
min-width: 180px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
text-align: center;
padding-left: 12px;
padding-bottom: 0px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover{
background-color: #000000;
}
.dropdown:hover .dropdown-content {
display: block;
}
@media only screen and (max-width: 600px) {
#bigscreen {
display: none;
}
}
@media only screen and (min-width: 601px) {
#smallscreen {
display: none;
}
}
</style>
<script>
var i = 0;
var txt = 'UDGHOSH 2018';
var speed = 200;
var j = 1;
setInterval(function selftype() {
if (i < txt.length) {
document.getElementById("self-type").innerHTML += txt.charAt(i);
i++;
setTimeout(selftype, speed);
}
},4000)
</script>
</head>
<body id="top">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo smoothscroll" href="#home"><img src="images/logo.png" alt="Homepage"></a>
</div>
<nav class="header-nav-wrap">
<ul class="header-nav">
<div class="dropdown">
<li class="current"><a title="about">About</a>
<div class="dropdown-content">
<a class="smoothscroll" href="#about">Note</a>
<a class="smoothscroll" href="#aftermovie">Aftermovie</a>
<a href="gallery/gallery.html" target="_blank">Gallery</a>
<a href="brochure.pdf" target="_blank">Brochure</a>
</div>
</li>
</div>
<div class="dropdown">
<li><a target="_blank" title="Events">Events   </a>
<div class="dropdown-content">
<a target="_blank" href="events.html">Sport Events</a>
<a target="_blank" href="pronight/pronight.html">Pronights</a>
<a target="_blank" href="informals.html">Informals</a>
</div>
</li>
</div>
<li><a href="team/team.html" target="_blank" title="Team">Team   </a></li>
<li><a href="ca/ca.html" target="_blank" title="Campus Ambassador">Campus Ambassador</a></li>
<li><a href="social.html" target="_blank" title="Social Cause">Social Cause</a></li>
<li><a href="sponsors/sponsors.html" target="_blank" title="Previous Sponsors">Previous Sponsors</a></li>
<li><a href="register/register.html" target="_blank" title="Register">Register</a></li>
<li><a href="https://goo.gl/forms/Pj4GtaWTkRrE4Kfp2" target="_blank" title="Associate">Associate With Us</a></li>
<li><a href="team/team.html" target="_blank" title="Contact">Contact</a></li>
</ul>
</nav>
<a class="header-menu-toggle" href="#0"><span>Menu</span></a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home page-hero target-section" data-parallax="scroll" data-image-src="images/hero-bg.jpg" data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="overlay"></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h3>4<sup>th</sup> - 7<sup>th</sup> October</h3>
<p id="self-type" class="bigscreen" style="letter-spacing: 6px; font-size: 6rem; font-family:Audiowide; color:white;"></p>
<p style="letter-spacing: 0.5rem; font-size: 2rem; font-family:Audiowide; font-size: 2rem; text-transform: uppercase; position: relative;">India's largest sports fest</p>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
</div>
</div> <!-- end home-content -->
<ul class="home-social">
<li>
<a href="https://www.facebook.com/udghosh.iitk/"><i class="im im-facebook" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="https://twitter.com/udghoshiitk"><i class="im im-twitter" aria-hidden="true"></i><span>Twitter</span></a>
</li>
<li>
<a href="https://www.instagram.com/udghosh_iitk/"><i class="im im-instagram" aria-hidden="true"></i><span>Instagram</span></a>
</li>
<li>
<a href="#"><i class="im im-youtube " aria-hidden="true"></i><span>Youtube</span></a>
</li>
</ul>
<!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section" style="background-color: #fcfcfc;">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full text-center">
<h3>About</h3>
<h1 style="font-family: Permanent+Marker">UDGHOSH</h1>
<p class="lead">IIT KANPUR has been one of the leading centers of education and research since its inception, providing some of the brightest minds of the country.<br / ><br />
Udghosh has always been a classic example of the fact that it's the endeavor that counts. Our efforts have always aimed to bring about a rise in competition level among the youths. empowering the masses with a torch of social awareness, keeping the grandeur of entertainment and professional shows alive. Udghosh brings to the masses a plethora of events, comprising all major sports, workshops and informal events. </p>
</div>
</div>
<div id="bigscreen"><br /><br /></div>
<div class="row about-content">
<div class="col-six tab-full left">
<h3>Events</h3>
<p style="font-weight: bold;">Let's Play</p>
<p>
IIT is equipped with the state of of the art facility in the sector of sports. Udghosh organises 22 sports events with a huge participation of both boys and girls from over 200 colleges across the country. Over 2500 students participants take part in a broad spectrum of fine sports events and informal events, followed by various other attractions like pro-Nights, comedy nights etc.<br /><br />
Udghosh 2018 being the largest sports festival in the county, also promotes social causes like "Udaan, a sports extravaganza for specially abled students" and "Saathi, led by Priyanka SURESH RAINA and Udghosh"
</p>
</div>
<div class="col-six tab-full right">
<h3></h3>
<ul class="skill-bars">
<li>
<div class="progress percent100"><span>4</span></div>
<strong>4 Days</strong>
</li>
<li>
<div class="progress percent90"><span>200</span></div>
<strong>200 + Colleges</strong>
</li>
<li>
<div class="progress percent70"><span>60,000</span></div>
<strong>60,000 + Footfalls</strong>
</li>
<li>
<div class="progress percent95"><span>4,00,000</span></div>
<strong>4,00,000 + Eyeballs</strong>
</li>
<li>
<div class="progress percent75"><span>1,19,000</span></div>
<strong>1,19,000 + facebook page likes</strong>
</li>
<li>
<div class="progress percent90"><span>2,500</span></div>
<strong>2,500 + Participants</strong>
</li>
</ul>
</div>
</div> <!-- end about-content -->
<div class="row about-content about-content--buttons">
<!-- <div class="col-six tab-full left">
<a href="ca/ca.html" class="btn btn--primary full-width">Become Campus Ambassador</a>
</div> -->
<div class="col-six tab-full right">
<a href="register/register.html" class="btn full-width">Register Your Team</a>
</div>
</div> <!-- end about-content buttons -->
<div class="row about-content about-content--timeline">
<div class="col-full text-center">
<h3 id="aftermovie">Witness the awesomeness of Udghosh</h3>
</div>
<div class="col-six tab-full left">
<div class="timeline">
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">October 2017</p>
<h3>Udghosh Aftermovie</h3>
<h5>Play it.</h5>
</div>
<div class="timeline__desc" id="bigscreen">
<iframe width="854" height="480" src="https://www.youtube.com/embed/4vi2ZTXYSAo" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
<!-- hidden when screen size is less -->
<div class="timeline__desc" id="smallscreen">
<iframe width="300" height="150" src="https://www.youtube.com/embed/4vi2ZTXYSAo" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div> <!-- end timeline__block -->
<br><br><br>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div id="brouchor" class="timeline__header">
<p class="timeline__timeframe">October 2018</p>
<h3>Udghosh 18</h3>
<h5>Broucher</h5>
</div>
<div class="timeline__desc">
<a href="brochure.pdf"><img src="images/brochure.jpg" style="width=854px; height=480px;"></a>
<a class="btn btn--primary full-width" href="brochure.pdf">Download brochure</a>
</div>
</div> <!-- end timeline__block -->
<!-- <br><br><br><br><br><br>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div id="brouchor" class="timeline__header">
<p class="timeline__timeframe"></p>
<h3>Associate With Us</h3>
<h5></h5>
</div>
<div class="timeline__desc">
<a
class="btn btn--primary full-width" href="https://drive.google.com/file/d/1cwZBYmbYUynT_fK0LQzecyqShtB-EJH7/view">Download broucher</a>
</div>
</div> -->
</div> <!-- end timeline -->
</div> <!-- end left -->
</div> <!-- end about-content timeline -->
</section> <!-- end about -->
<!-- works
================================================== -->
<!-- <section id="works" class="s-works target-section">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full">
<h3>Portfolio</h3>
<h1>See My Latest Projects.</h1>
<p class="lead">Lorem ipsum Dolor adipisicing nostrud et aute Excepteur amet commodo ea dolore irure esse Duis nulla sint fugiat cillum ullamco proident aliquip quis qui voluptate dolore veniam Ut laborum non est in officia.</p>
</div>
</div>
<div class="row masonry-wrap">
<div class="masonry">
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-beetle.jpg" class="thumb-link" title="The Beetle Car" data-size="1050x700">
<img src="images/portfolio/beetle.jpg"
srcset="images/portfolio/beetle.jpg 1x, images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
The Beetle
</h3>
<p class="item-folio__cat">
Web Development
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> --> <!-- end item-folio -->
<!-- </div> -->
<!-- <div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-lighthouse.jpg" class="thumb-link" title="Lighthouse" data-size="1050x700">
<img src="images/portfolio/lighthouse.jpg"
srcset="images/portfolio/lighthouse.jpg 1x, images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Lighthouse
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> --> <!-- end item-folio -->
<!-- </div> -->
<!-- Associate With Us -->
<section id="blog" class="s-blog target-section" style="background-color: #fcfcfc;">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full">
<h3>Sponsors</h3>
<h1>Associate With Us</h1>
<p class="lead">Udghosh 2018 will be very delighted to associate with companies to promote and making the festival happen with great success..</p>
</div>
</div>
<div class="row blog-content">
<div class="col-full">
<div class="blog-list block-1-2 block-tab-full">
<article class="col-block">
<h2 class="h01"><a href="blog-single.html">Marketing</a></h2>
<p>
Companies can associate with Udghosh, IIT Kanpur as sponsors for the festival with a return of an incredible year-long branding and promotion implementations.- marketing
</p>
<div class="col-six tab-full right">
<a href="https://goo.gl/forms/Pj4GtaWTkRrE4Kfp2" target="_blank" class="btn full-width">Join us</a>
</div>
</article>
<article class="col-block">
<h2 class="h01"><a href="blog-single.html">Media.</a></h2>
<p>
Media companies can associate with Udghosh, IIT Kanpur as media Partners and can expect incredible year long branding.
</p><br />
<div class="col-six tab-full right">
<a href="https://goo.gl/forms/Pj4GtaWTkRrE4Kfp2" target="_blank" class="btn full-width">Join us</a>
</div>
<!-- </article>
<article class="col-block">
<div class="blog-date">
<a href="blog-single.html">Sept 14, 2017</a>
</div>
<h2 class="h01"><a href="blog-single.html">Workspace Design Trends and Ideas.</a></h2>
<p>
Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Pellentesque in ipsum id orci porta dapibus. Donec sollicitudin molestie malesuada. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Cras ultricies ligula sed magna dictum porta. Sed porttitor lectus nibh dolore irure esse Duis nulla sint.
</p>
<div class="blog-cat">
<a href="blog.html">Branding</a><a href="blog.html">Wordpress</a>
</div>
</article>
<article class="col-block">
<div class="blog-date">
<a href="blog-single.html">Sept 12, 2017</a>
</div>
<h2 class="h01"><a href="blog-single.html">Using Patterns in your Branding.</a></h2>
<p>
Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Pellentesque in ipsum id orci porta dapibus. Donec sollicitudin molestie malesuada. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Cras ultricies ligula sed magna dictum porta. Sed porttitor lectus nibh.
</p>
<div class="blog-cat">
<a href="blog.html">Design</a><a href="blog.html">Branding</a>
</div>
</article> -->
</div>
</div>
</div>
</section>
<section class="s-cta">
<div class="row narrow cta">
<div class="col-full cta__content">
<h2 class="h01">Promote Your Brand here</h2><br>
<div class="cta__action">
<a class="btn btn--primary btn--large" href="https://goo.gl/forms/Pj4GtaWTkRrE4Kfp2" target="_blank">Register Your Brand</a>
</div>
</div>
</div> <!-- end cta -->
</section>
<!-- testimonials
================================================== -->
<div class="s-testimonials">
<div class="overlay"></div>
<div class="row testimonials-header">
<div class="col-full">
<h1 class="h02">What People Say About Udghosh.</h1>
</div>
</div>
<div class="row testimonials">
<div class="col-full testimonials__slider">
<div class="testimonials__slide">
<img src="images/avatars/user-01.jpg" alt="Author image" class="testimonials__avatar">
<p>Being the most coveted sports fest of the most prestigious universities of India , Udghosh genrates a sizeable amount of buzz..</p>
<div class="testimonials__author h06">
Abhinav Bindra
<span>Gold Medalist , Olympics</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/user-04.jpg" alt="Author image" class="testimonials__avatar">
<p>The crowd was amazing and it was a great experience.</p>
<div class="testimonials__author h06">
R.P Singh
<span>Fast Bowler , India</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/user-05.jpg" alt="Author image" class="testimonials__avatar">
<p>The level of participation was great . It was awesome to play a match in Udghosh 13.</p>
<div class="testimonials__author h06">
Ashwini Ponnappa
<span>Gold Medalist , CommonWealth Games 2010</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/user-03.jpg" alt="Author image" class="testimonials__avatar">
<p>Udghosh has done a remarkable job . The infrastrucute at IIT KANPUR is one of the best in the nation.</p>
<div class="testimonials__author h06">
Dhanraj Pillay
<span>Captain , Indian Hockey Team</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/user-02.jpg" alt="Author image" class="testimonials__avatar">
<p>The campus provides national level sports facilities and I really enjoyed playing a exhibition match here.</p>
<div class="testimonials__author h06">
Ritwik Bhattacharya
<span>5 Times ,National Squash Champion</span>
</div>
</div>
</div> <!-- end testimonials__slider -->
</div> <!-- end testimonials -->
</div> <!-- end s-testimonials -->
<!-- s-cta
================================================== -->
<!-- s-stats
================================================== -->
<section id="stats" class="s-stats">
<div class="row block-1-4 block-tab-1-2 block-mob-full stats">
<div class="col-block stats__col">
<div class="stats__count">
4
</div>
<h4>Days</h4>
</div>
<div class="col-block stats__col ">
<div class="stats__count">
200
</div>
<h4>Colleges</h4>
</div>
<div class="col-block stats__col stats__col--highlight">
<!-- <div class="stats__upsign">
<a href="#"><i class="im im-arrow-up" aria-hidden="true"></i></a>
</div> -->
<div class="stats__count" style="font-size: 4.5rem;">
60000
</div><p style="color: white">and more</p>
<h4>Footfalls</h4>
</div>
<div class="col-block stats__col">
<div class="stats__count">
2500
</div>
<h4>Participants</h4>
</div>
</div>
</section> <!-- end s-stats -->
<!-- s-stats
================================================== -->
<!-- <section id="contact" class="s-contact target-section">
<div class="overlay"></div>
<div class="row narrow section-intro">
<div class="col-full">
<h3>Contact</h3>
<h1>Say Hello.</h1>
<p class="lead">Lorem ipsum Dolor adipisicing nostrud et aute Excepteur amet commodo ea dolore irure esse Duis nulla sint fugiat cillum ullamco proident aliquip quis qui voluptate dolore veniam Ut laborum non est in officia.</p>
</div>
</div>
<div class="row contact__main">
<div class="col-eight tab-full contact__form">
<form name="contactForm" id="contactForm" method="post" action="">
<fieldset>
<div class="form-field">
<input name="contactName" type="text" id="contactName" placeholder="Name" value="" minlength="2" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value="" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="" class="full-width">
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage" placeholder="message" rows="10" cols="50" required="" aria-required="true" class="full-width"></textarea>
</div>
<div class="form-field">
<button class="full-width btn--primary">Submit</button>
<div class="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</fieldset>
</form>
contact-warning -->
<!-- <div class="message-warning">
Something went wrong. Please try again.
</div>
-->
<!-- contact-success -->
<!-- <div class="message-success">
Your message was sent, thank you!<br>
</div>
</div>
<div class="col-four tab-full contact__infos">
<h4 class="h06">Phone</h4>
<p>Phone: (+63) 555 1212<br>
Mobile: (+63) 555 0100<br>
Fax: (+63) 555 0101
</p>
<h4 class="h06">Email</h4>
<p>[email protected]<br>
</p>
<h4 class="h06">Address</h4>
<p>
1600 Amphitheatre Parkway<br>
Mountain View, CA<br>
94043 US
</p>
</div>
</div>
</section> --> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="col-full">
<div class="footer-logo">
<a class="footer-site-logo" href="#0"><img src="images/logo.png" alt="Homepage"></a>
</div>
<ul class="footer-social">
<li>
<a href="https://www.facebook.com/udghosh.iitk/" target="_blank"><i class="im im-facebook" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="https://twitter.com/udghoshiitk" target="_blank"><i class="im im-twitter" aria-hidden="true"></i><span>Twitter</span></a>
</li>
<li>
<a href="https://www.instagram.com/udghosh_iitk/" target="_blank"><i class="im im-instagram" aria-hidden="true"></i><span>Instagram</span></a>
</li>
<li>
<a href="https://www.youtube.com/user/udghosh11" target="_blank"><i class="im im-youtube " aria-hidden="true"></i><span>Youtube</span></a>
</li>
</ul>
</ul>
</div>
</div>
<div class="row footer-bottom">
<div class="col-twelve">
<div class="copyright">
<span>© Copyright Udghosh 18</span>
<!-- <span>Design by <a href="https://www.facebook.com/piyush.patel.319">Piyush Patel</a></span> -->
</div>
<div class="go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="im im-arrow-up" aria-hidden="true"></i></a>
</div>
</div>
</div> <!-- end footer-bottom -->
</footer> <!-- end footer -->
<!-- photoswipe background
================================================== -->
<div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title=
"Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div><!-- end photoSwipe background -->
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>