-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
84 lines (78 loc) · 4.92 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./styling/home.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Bungee+Shade&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bangers&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./styling/animate.css">
<title>AAGAZ'20</title>
<script>
// javascript for map
function myMap() {
var mapProp= {
center:new google.maps.LatLng(51.508742,-0.120850),
zoom:5,
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: true,
streetViewControl: true,
overviewMapControl: true,
rotateControl: true
};
var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
}
</script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCzT1r1sOloPN68_eMEcAq6QCyqTTulRPo&callback=initMap"
type="text/javascript"></script>
</head>
<body>
<div class="container-fluid heading col-sm-12">
<ul class="navigation">
<li style="padding-left: 0%;margin-left: 0%;"><a href="#" class="navitems animated bounceInDown"><i class="fa fa-home"></i> HOME</a></li>
<li><a href="#" class="navitems animated bounceInDown" onclick=""><i class='fa fa-paperclip'></i> ABOUT</a></li>
<li><a href="#" class="navitems animated bounceInDown"><i class='fa fa-table-tennis'></i> EVENTS</a></li>
<li><a href="#" class="navitems animated bounceInDown"><i class='fa fa-camera'></i> GALLERY</a></li>
<li><a href="#" class="navitems animated bounceInDown"><i class='fa fa-users'></i> TEAM</a></li>
<li><a href="#" class="navitems animated bounceInDown"><i class="fa fa-door-open"></i> ACCOMODATION</a></li>
<li><a href="#" class="login"><i class="fa fa-w fa-user"></i>LogIn </a></li>
</ul>
</div>
<!--banner-->
<!--footer-->
<footer style="height: 25vw;background:linear-gradient(rgba(3, 86, 86,1),rgba(3, 86, 86,0.6));color: white;">
<div class="row" style="width: 100%;height: 75%;">
<div class="col-sm-4" style="text-align: center;height: 75%;">
<br><br><br><br>
<img src="./images/hbtulogo.png" alt="hbtulogo" style="width:8vw;height:8vw;padding: 1vw;"><br><br><br><br>
<ul class="icons">
<li><i class="fa fa-facebook"></i></li>
<li><i class="fa fa-twitter"></i></li>
<li style="padding-right: 0;"><i class="fa fa-linkedin"></i><li>
<li style="padding-left:0;"><i class="fa fa-instagram"></i></li>
</ul>
</div>
<div class="col-sm-4" style="align-items: center;height: 75%;">
<br><br><br><br><br>
<ul style="list-style-type: none;">
<li style="font-size: 1vw;font-family:Oswald;font-weight: 500;padding: 0.5vw;"><i class="fa fa-mobile"></i> PARTICIPATION // ADITYA GULIA:<span onMouseOver="this.style.color='rgb(224, 163, 7)';" onMouseOut="this.style.color='#FFF'"> +91 99939 30516</span></li>
<li style="font-size: 1vw;font-family:Oswald;font-weight: 500;padding: 0.5vw;"><i class="fa fa-mobile"></i> MARKETING & PR // BHARTI SHISHODIA:<span onMouseOver="this.style.color='rgb(224, 163, 7)';" onMouseOut="this.style.color='#FFF'"> +91 92052 59791</span></li>
<li style="font-size: 1vw;font-family:Oswald;font-weight: 500;padding: 0.5vw;">♛ FEST COORDINATORS // HIBA NAYEEM & KHWAHISH SETHIA</li>
<li style="font-size: 1vw;font-family:Oswald;font-weight: 500;padding: 0.5vw;"><i class="fa fa-envelope"></i> PUBLICRELATIONS-<span onMouseOver="this.style.color='rgb(224, 163, 7)';" onMouseOut="this.style.color='#FFF'">RANBHOOMI@IIMID</span></li>
</ul>
</div>
<!--div for google map-->
<div class="col-sm-4" id="googleMap" style="width:100%;height:75%;"></div>
</div>
<br><p style="text-align:center;font-family:Oswald;font-size:1vw;">© COPYRIGHT 2020 AAGAZ 2.0</p>
</footer>
</body>
</html>