-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (32 loc) · 955 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Team Building</title>
<link href="https://fonts.googleapis.com/css?family=Barlow+Condensed" rel="stylesheet">
<link rel="stylesheet" href="assets/css/app.css">
</head>
<body>
<div id="map">
</div>
<div class="imgParent" id="imgParent">
</div>
<div class="horizonline">
<div class="text">
<img id="back" src="assets/img/back.png"/>
<h3 id="title">Welcome to our Presentation</h3>
<img id="next" onclick="myClick();" src="assets/img/next.png"/>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="http://maps.google.com/maps/api/js?key=AIzaSyCkJsDkfRpNgYePIgzwtYq7WvgO1E7KWuY"></script>
<script src="assets/js/gmaps.js"></script>
<script>
var map = new GMaps({
el: '#map',
lat: 48.3967021387,
lng: 15.5190722644,
});
</script>
<script src="assets/js/app.js"></script>
</body>
</html>