-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocation.html
104 lines (85 loc) · 2.72 KB
/
location.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
<!DOCTYPE html>
<html lang='ua'>
<head>
<meta charset='UTF-8'>
<meta name='viewport'
content='width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0'>
<title>Some title</title>
<link rel="shortcut icon" href="img/common_img/favicon.ico" type="image/x-icon">
<link href='./css/style.css' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet'>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-719XEYVS4E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-719XEYVS4E');
</script>
</head>
<body>
<header>
<div class='logo'>
<a href='index.html'><img alt='logo' class='graphic-logo' src='img/common_img/logo.png'></a>
</div>
<nav>
<div class='top-nav' id='myTopNav'>
<a href='index.html'>HOME</a>
<a href='projects.html'>PROJECTS</a>
<a href='blog.html'>BLOG</a>
<a href='contact.html'>CONTACT</a>
<a href='about.html'>ABOUT</a>
<a href='services.html'>SERVICES</a>
<a href='location.html'>LOCATION</a>
<a ID='menu' href='#' class='icon'>☰</a>
</div>
</nav>
</header>
<main>
<h1 class='location-header'>Location</h1>
<div id='map'></div>
</main>
<footer>
<nav>
<a href='index.html'>HOME</a>
<a href='projects.html'>PROJECTS</a>
<a href='blog.html'>BLOG</a>
<a href='contact.html'>CONTACT</a>
<a href='about.html'>ABOUT</a>
<a href='services.html'>SERVICES</a>
<a href='location.html'>LOCATION</a>
</nav>
<div class='logo'>
<a href='index.html'><img src='img/common_img/logo.png' alt='' class='graphic-logo'></a>
</div>
<div class='social'>
<a href='#'><img src='img/common_img/mail.png' alt=''></a>
<a href='#'><img src='img/common_img/facebook.png' alt=''></a>
<a href='#'><img src='img/common_img/twitter.png' alt=''></a>
<a href='#'><img src='img/common_img/instagram.png' alt=''></a>
</div>
<p>Lorem ipsum dolor. 2019</p>
</footer>
<script src='js/script.js'></script>
<script>
function initMap() {
var myLatLng = { lat: 50.2536277, lng: 28.6655191 };
// Create a map object and specify the DOM element
// for display.
var map = new google.maps.Map(document.getElementById('map'), {
center: myLatLng,
zoom: 10
});
// Create a marker and set its position.
var marker = new google.maps.Marker({
map: map,
position: myLatLng,
title: 'this is a marker!'
});
}
</script>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB-jnwCdTJColYczy9C7V1XLDwYoRjdj2w&language=en&callback=initMap"
async defer></script>
</body>
</html>