-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 871 Bytes
/
index.html
File metadata and controls
32 lines (30 loc) · 871 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Теплова карта ІТ компаній України</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.5.1/dist/leaflet.min.css"/>
<style>
html, body {
margin: 0;
padding: 0;
}
html, body, #map {
width: 100%;
height: 100%;
}
.title {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
z-index: 999;
}
</style>
</head>
<body>
<h1 class="title">Теплова карта ІТ компаній України</h1>
<div id="map"></div>
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/itheatmap/itheatmap.github.io/dist/js/v1/app.js"></script>
</body>
</html>