This repository has been archived by the owner on Oct 3, 2019. It is now read-only.
forked from KhushilMistry/concours18
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (78 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Concours'18</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="stylesheet/index.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" type="image/png" href="./assets/images/logo.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125487432-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-125487432-1');
</script>
</head>
<body>
<!--<audio id="myAudio">-->
<!--<source src="./assets/music/background-music.mp3" type="audio/ogg">-->
<!--</audio>-->
<div class="icon" id="icon">
<div class="hexagon"></div>
<div class="lines"></div>
<div class="lines"></div>
<div class="lines"></div>
</div>
<div id="container-div">
<div class="row">
<div class="col-md-4 video-div" id="cricket">
</div>
<div class="col-md-4 col-sm-12 video-div" id="football">
</div>
<div class="col-md-4 video-div" id="volleyball">
</div>
</div>
<div class="row">
<div class="col-md-4 video-div" id="tabletennis">
</div>
<div class="col-md-4 video-div" id="badminton">
</div>
<div class="col-md-4 col-sm-12 video-div" id="basketball">
</div>
</div>
<div class="title">
<h3>W H E R E <strong> G L O R Y </strong>L A S T S <strong>F O R E V E R</strong></h3>
</div>
<div class="icon-container">
<a class="icon-link" href="https://www.facebook.com/ConcoursDaiict/" target="_blank"><i class="fa fa-facebook-official fa-lg"
aria-hidden="true"></i></a>
<a class="icon-link" href="https://www.instagram.com/sportsatdaiict/" target="_blank"><i class="fa fa-instagram fa-lg"
aria-hidden="true"></i></a>
<a class="icon-link" href="mailto:daiictconcours@gmail.com"><i class="fa fa-envelope fa-lg" aria-hidden="true"></i></a>
</div>
<div class="menu-icon" onclick="openNav()"><i class="fa fa-th-large fa-2x" aria-hidden="true"></i>
</div>
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="index.html">HOME</a>
<a href="faq.html">FAQ</a>
<a href="events.html">EVENTS</a>
<a href="https://concours-2018.herokuapp.com/" target="_blank">REGISTER</a>
<a href="contact.html">CONTACT</a>
</div>
</div>
<div class="logo-container">
<img src="./assets/images/logo.png" width="70">
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="JS/index.js"></script>
</body>
</html>