-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (24 loc) · 1.03 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
<!Doctype html>
<html>
<head>
<title>Tab Viewer</title>
<link rel="manifest" href="./res/manifest.webmanifest">
<link rel="shortcut icon" href="./res/favicon.png" />
<link rel="stylesheet" type="text/css" href="./res/index.css" />
<link rel="stylesheet" type="text/css" href="./res/loadingIcon.css" />
<script src="https://kit.fontawesome.com/4ae49116a2.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0" />
<meta name="keywords" content="guitar tabs, bass tabs, tab, tablature, tabs, chords, ukulele, ukulele chords, sheet music, music">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WRY4GB88CM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-WRY4GB88CM');
</script>
</head>
<body>
<script src="./res/index.js" type="module"></script>
</body>
</html>