-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (84 loc) · 3.4 KB
/
Copy pathindex.html
File metadata and controls
95 lines (84 loc) · 3.4 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="any" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="color-scheme" content="light dark" />
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<title>Crypto Trade Analyzer: Compare Exchange Fees</title>
<meta
name="description"
content="Compare crypto exchange fees and returns instantly. Use our Trade Analyzer to find the most cost-efficient platform for your trades."
/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Crypto Trade Analyzer" />
<meta property="og:title" content="Crypto Trade Analyzer: Compare Exchange Fees" />
<meta
property="og:description"
content="Compare crypto exchange fees and returns instantly. Use our Trade Analyzer to find the most cost-efficient platform for your trades."
/>
<meta property="og:url" content="https://binance.github.io/crypto-trade-analyzer" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Crypto Trade Analyzer: Compare Exchange Fees" />
<meta
name="twitter:description"
content="Compare crypto exchange fees and returns instantly. Use our Trade Analyzer to find the most cost-efficient platform for your trades."
/>
<link rel="canonical" href="https://binance.github.io/crypto-trade-analyzer" />
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
<link rel="preconnect" href="https://www.google-analytics.com" crossorigin />
<script>
(function () {
const darkMode = window.matchMedia('(prefers-color-scheme: dark)');
const apply = (mode) => {
const dark = mode === 'dark' || (mode === 'system' && darkMode.matches);
document.documentElement.classList.toggle('dark', dark);
};
const cachedTheme = localStorage.getItem('theme') || 'system';
apply(cachedTheme);
darkMode.addEventListener?.('change', () => {
if ((localStorage.getItem('theme') || 'system') === 'system') apply('system');
});
window.setTheme = (mode) => {
localStorage.setItem('theme', mode);
apply(mode);
};
})();
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('consent', 'default', {
ad_storage: 'denied',
analytics_storage: 'denied',
ad_user_data: 'denied',
ad_personalization: 'denied',
wait_for_update: 500,
});
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-66PKT68WN0"></script>
<script>
gtag('js', new Date());
gtag('config', 'G-66PKT68WN0');
</script>
<style>
body {
background: #ffffff;
color: #18181b;
}
html.dark body {
background: #09090b;
color: #f4f4f5;
}
</style>
</head>
<body class="antialiased">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>