-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
94 lines (93 loc) · 2.97 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Countries I have visited</title>
<link
href="https://fonts.googleapis.com/css?family=Covered+By+Your+Grace|Permanent+Marker"
rel="stylesheet"
/>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="favicon.ico" rel="icon" type="image/png" />
<script src="d3.v4.min.js"></script>
<script src="countries.js"></script>
<script src="script.js"></script>
<meta property="og:title" content="Countries I have visited" />
<meta
property="og:description"
content="Interactive map of countries visited by Glauber Ramos"
/>
<meta
property="og:image"
content="https://glauberramos.github.io/visited-countries/backpack.png"
/>
<meta
property="og:url"
content="https://glauberramos.github.io/visited-countries"
/>
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<link
rel="canonical"
href="https://glauberramos.github.io/visited-countries"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Interactive map of countries visited by Glauber Ramos, showcasing travel experiences around the world."
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Countries I have visited",
"description": "Interactive map of countries visited by Glauber Ramos",
"author": {
"@type": "Person",
"name": "Glauber Ramos",
"url": "http://www.glauberramos.com"
}
}
</script>
</head>
<body>
<header id="header">
<img src="backpack.png" alt="Backpack icon" title="Backpack icon" />
<h1>Glauber's</h1>
<h2 class="subheader">visited countries</h2>
<div id="header-info">
<div id="statistic">
<div class="number-section">
<span id="number-countries" class="information"></span>
<span class="numbers">
<span id="globe-percent"></span>
<span>of</span>
<a
target="_blank"
href="http://en.wikipedia.org/wiki/Member_states_of_the_United_Nations "
>
193
</a>
</span>
</h2>
</div>
</div>
</header>
<main id="map">
<div id="country-name"></div>
<div id="svg" class="full-map"></div>
</main>
<footer id="footer">
<h4>
Created with ❤️ by
<a href="http://www.glauberramos.com" target="_blank">Glauber Ramos</a>.
Check
<a
href="https://github.com/glauberramos/visited-countries/"
target="_blank"
>github</a
>
for instructions to create your own. Check my <a href="/visited-countries/brazil-states">brazilian</a> map.
</h4>
</footer>
</body>
</html>