-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
102 lines (90 loc) · 5.11 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
95
96
97
98
99
100
101
102
<!doctype html>
<html lang="en" itemscope itemtype="http://schema.org/WebPage">
<head>
<title>Bitcoin World</title>
<!-- general meta data -->
<meta name="lightning" content="lnurlp:[email protected]" /> <!-- please donate :-) -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name=robots content="index,follow" />
<meta name="description" content="Bitcoin adoption as legal tender visualized on a world map. The map highlights nation states like El Salvador or the Central African Republic." />
<meta name="keywords" content="Bitcoin,BTC,legal tender,national currency,adoption,world,map,countries,country,El Salvador,ES,Central African Republic,CAR" />
<meta name="author" content="Gabriel Comte" />
<link rel="canonical" href="https://bitcoinmap.world/" />
<meta name="subject" content="Bitcoin Adoption Map" />
<meta name="copyright" content="Gabriel Comte" />
<meta name="revised" content="05/05/2022" />
<meta name="url" content="bitcoinmap.world" />
<meta http-equiv="x-dns-prefetch-control" content="off" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<!-- Twitter Card data https://dev.twitter.com/cards/overview -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Bitcoin Legal Tender World Map" />
<meta name="twitter:site" content="@btcworldmap" />
<meta name="twitter:description" content="Interactive world map showing all countries that use Bitcoin as their legal tender." />
<meta name="twitter:image" content="https://raw.githubusercontent.com/gcomte/bitcoin-world/main/assets/entire-map-with-text.png" />
<!-- Open Graph data http://ogp.me/ -->
<meta property="og:title" content="Bitcoin Legal Tender World Map" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bitcoinmap.world/" />
<meta property="og:image" content="https://raw.githubusercontent.com/gcomte/bitcoin-world/main/assets/logo.png" />
<meta property="og:description" content="Bitcoin adoption as legal tender visualized on a world map" />
<meta property="og:site_name" content="Bitcoin Legal Tender World Map" />
<link rel="stylesheet" href="style.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EHY5FCQ9SL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-EHY5FCQ9SL');
</script>
<!-- World Map -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/svg-pan-zoom.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/StephanWagner/[email protected]/dist/svgMap.min.js"></script>
<link href="https://cdn.jsdelivr.net/gh/StephanWagner/[email protected]/dist/svgMap.min.css" rel="stylesheet" />
<!-- GitHub Ribbon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css" />
<!-- footer -->
<script src="https://kit.fontawesome.com/b44ed38f8e.js" crossorigin="anonymous"></script>
</head>
<body>
<h1 class="mobile">Bitcoin as Legal Tender</h1>
<div id="svgMap"></div>
<script src="data.js"></script>
<a class="github-fork-ribbon" href="https://github.com/gcomte/bitcoin-world" data-ribbon="Fork me on GitHub" title="Fork me on GitHub">Fork me on GitHub</a>
<div class="mobile mobile-body">
<p>Bitcoin is legal tender in 2 countries out of 195.</p>
<p>Hyperbitcoinization progress:</p>
<div class="progress-bar-wrapper">
<div class="progress-bar">
<span class="progress-bar-fill" style="width: 2%;"></span>
<span class="percentage-text">1.03%</span>
</div>
</div>
<h3 style="margin-bottom: -6px; margin-top: 30px;">More Details</h3>
<div class="btn-wrapper" style="float: left; margin-left: 60px; margin-right: 0px;">
<a class="btn" href="https://en.wikipedia.org/wiki/Legality_of_cryptocurrency_by_country_or_territory" target="_blank">Wikipedia</a>
</div>
<div class="btn-wrapper" style="float: right; margin-right: 60px; margin-left: 0px;">
<a class="btn" href="https://www.bitrawr.com/terminal/legality-map" target="_blank">bitrawr.com</a>
</div>
<div style="clear:both;"></div>
<hr />
</div>
<footer class="mobile">
<div class="social">
<a href="https://twitter.com/btcworldmap" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="https://github.com/gcomte/bitcoin-world" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
<a href="lightning:[email protected]" target="_blank">
<i class="fa-solid fa-bolt"></i>
</a>
</div>
</footer>
</body>
</html>