-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTEST.html
100 lines (100 loc) · 3.84 KB
/
TEST.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/user.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<style>
#map {
height: 500px;
width: 100%;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand navbar-link" href="http://talentbandung.id">
<i class="glyphicon glyphicon-signal"></i>
<span class="text-title" style="color:black;">TALENT BANDUNG</span>
</a>
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navcol-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navcol-1">
<ul class="nav navbar-nav navbar-right">
<li class="active" role="presentation">
<a href="index.html">HOME </a>
</li>
<li role="presentation">
<a href="TEST.html">LOCATION </a>
</li>
<li role="presentation">
<a href="maps.html">NAVIGATION </a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<ul class="nav nav-tabs categories">
<li>
<a href="index.html">HOME</a>
</li>
<li class="active">
<a href="TEST.html">LOCATION</a>
</li>
<li>
<a href="maps.html">NAVIGATION</a>
</li>
</ul>
<section id="header">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center">
<h1 class="wow fadeInUp">Lokasi Wisata Stone Garden</h1>
</div>
</div>
</div>
</section>
<div id="map"></div>
<script>
function initMap() {
var Stone_Garden_Citatah = {lat: -6.824767, lng: 107.438178};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 17,
center: Stone_Garden_Citatah
});
var marker = new google.maps.Marker({
position: Stone_Garden_Citatah,
map: map
});
}
</script>
<footer>
<ul class="socials" style="margin-left: -74px;">
CONTACT ME ON :<br>
<li><a href="https://github.com/talentbandung/yogichandras.github.io">Github</a></li>
<li><a href="https://www.instagram.com/yogichandras/">Instagram</i></a></li>
<li><a href="https://web.facebook.com/yogi.chandras.5">Facebook</i></a></li>
<li><a href="mailto:[email protected]">Gmail</i></a></li>
</ul>
</footer>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBLi3_o7lLSuTzfi32ZO8636ONgqeiLcu8&callback=initMap">
</script>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>