-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
executable file
·34 lines (32 loc) · 945 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
<!DOCTYPE html>
<html>
<head>
<title>Fundingrate.io | Dashboard</title>
<!-- <meta
name="description"
content="Some site details."
/>
<meta name="keywords" content="react, js, javascript, boilerplate" />
<meta name="author" content="tacyarg" /> -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://highlightjs.org/static/demo/styles/railscasts.css" />
</head>
<body>
<div id="app"></div>
<script src="./src/index.js"></script>
</body>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-86040224-4"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-86040224-4");
</script>
</html>