This repository has been archived by the owner on Oct 3, 2019. It is now read-only.
forked from KhushilMistry/ifestFrontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
157 lines (140 loc) · 6.4 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>i.Fest 2017</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css">
<link rel="stylesheet" href="css/other.css">
<link rel="stylesheet" href="css/navbar.css">
</head>
<body>
<div class="particle-Header">
<div id="particles-js">
<div class="top-navbar">
<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="events.html">EVENTS</a>
<a href="gallery.html">GALLERY</a>
<a href="contact.html">CONTACT</a>
<a href="sponsors.html">SPONSORS</a>
<a href="team.html">THE TEAM</a>
<a href="https://ifestvolunteer.firebaseapp.com/#/login">LOGIN</a>
</div>
</div>
<ul class="top-navbar-links" hidden>
<li class="inline"><a class="top-navbar-links-a" href="index.html">HOME</a></li>
<li class="inline"><a class="top-navbar-links-a" href="events.html">EVENTS</a></li>
<li class="inline"><a class="top-navbar-links-a" href="gallery.html">GALLERY</a></li>
<li class="inline"><a class="top-navbar-links-a" href="contact.html">CONTACT</a></li>
<li class="inline"><a class="top-navbar-links-a" href="sponsors.html">SPONSORS</a></li>
<li class="inline"><a class="top-navbar-links-a" href="team.html">THE TEAM</a></li>
<li class="inline"><a class="top-navbar-links-a"
href="https://ifestvolunteer.firebaseapp.com/#/login" target="_blank">LOGIN</a></li>
</ul>
<div class="button-class">
<i id="top-navbar-content-2" onclick="openNav()" class="fa fa-bars top-navbar-icon"></i>
<i id="top-navbar-content-3" onclick="hideButton()" class="fa fa-bars top-navbar-icon"></i>
<i id="top-navbar-cross-3" onclick="showButton()" class="fa fa-times top-navbar-icon"></i>
</div>
</div>
<a href="index.html"><img class="icon" src="assets/logo.png" width="70"></a>
<h1 class="title">CONTACT US</h1>
</div>
</div>
<div class="container">
<div id="map" style="width:100%;height:400px;"></div>
<div class="row" style="padding: 40px 0px 40px 0px;">
<div class="col-md-4 text-center">
<h3>ADDRESS</h3>
<p class="contact-text">DA-IICT, Near Indroda Circle, Gandhinagar.</p>
<hr class="contact-hr">
</div>
<div class="col-md-4 text-center">
<h3>PHONE</h3>
<p class="contact-text">+91 7202839225</p>
<hr class="contact-hr">
</div>
<div class="col-md-4 text-center">
<h3>EMAIL</h3>
<p class="contact-text">ifest17.daiict@gmail.com</p>
<hr class="contact-hr">
</div>
</div>
</div>
<div class="bottom-navbar container-fluid">
<div class="row">
<div class="col-md-2 col-md-offset-10 col-sm-offset-9 col-sm-3 col-xs-offset-7 col-xs-5">
<a href="https://www.facebook.com/ifestdaiict/" target="_blank" class="icon-a"><i class="fa fa-facebook"
aria-hidden="true"></i></a>
<a href="https://www.instagram.com/i.fest/" target="_blank" class="icon-a"><i class="fa fa-instagram"
aria-hidden="true"></i></a>
<a href="mailto:ifest17.daiict@gmail.com" target="_blank" class="icon-a"><i class="fa fa-envelope-o"
aria-hidden="true"></i></a>
<a class="icon-a"><i class="fa fa-play" target="_blank" aria-hidden="true"></i></a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.js"></script>
<script>
document.getElementById("top-navbar-cross-3").style.display = "none";
particlesJS.load('particles-js', 'static/particles.json', function () {
console.log('callback - particles.js config loaded');
});
function openNav() {
document.getElementById("myNav").style.width = "100%";
}
function closeNav() {
document.getElementById("myNav").style.width = "0%";
}
function showButton() {
document.getElementById("top-navbar-content-3").style.display = "initial";
document.getElementById("top-navbar-cross-3").style.display = "none";
}
function hideButton() {
document.getElementById("top-navbar-content-3").style.display = "none";
document.getElementById("top-navbar-cross-3").style.display = "initial";
}
</script>
<script>
$(document).ready(function () {
$(window).scroll(function () {
$('.div-animation').each(function (i) {
var bottom_of_object = $(this).position().top + $(this).outerHeight();
var bottom_of_window = $(window).scrollTop() + $(window).height();
if (bottom_of_window > bottom_of_object) {
$(this).animate({ 'opacity': '1' }, 1500);
}
});
});
});
</script>
<script>
function myMap() {
var mapCanvas = document.getElementById("map");
var myCenter = new google.maps.LatLng(23.188546, 72.629720);
var mapOptions = { center: myCenter, zoom: 16 };
var map = new google.maps.Map(mapCanvas, mapOptions);
var icon = {
url: "./assets/logo.png", // url
scaledSize: new google.maps.Size(43, 50), // scaled size
};
var marker = new google.maps.Marker({
position: myCenter,
icon: icon,
animation: google.maps.Animation.BOUNCE
});
marker.setMap(map);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBJ-bSzZ8xCvYerg60pxFw6CO0StW1C7R8&callback=myMap"></script>
<script src="js/javascript.js"></script>
</body>
</html>