-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (25 loc) · 963 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
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>EUVisited</title>
<link rel="stylesheet" href="styles.css">
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/html2canvas@1.3.2/dist/html2canvas.min.js"></script>
<script src="https://cdn.jsdelivr.net/g/filesaver.js" s></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LV78SC711B"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-LV78SC711B');
</script>
</head>
<body>
<div id="welcome_text">Mark the countries you have visited from the map!</div>
<div id="map_container"></div>
<button id="download_button" onclick="downloadMap()">Download the map</button>
<script src="euvisited.js"></script>
</body>
</html>