-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (47 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta
name="description"
content="A tuner with support for musical temperaments"
/>
<meta name="keywords" content="tuner, music, temperament" />
<link rel="icon" href="favicon.png" />
<link rel="icon" href="icon.svg" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<meta name="theme-color" content="#1e9be9" />
<link
rel="preconnect"
crossorigin="anonymous"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
crossorigin="anonymous"
href="https://fonts.gstatic.com"
/>
<link
rel="stylesheet"
crossorigin="anonymous"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
/>
<link
rel="stylesheet"
crossorigin="anonymous"
href="https://fonts.googleapis.com/icon?family=Material+Icons+Round"
/>
<link href="./src/index.css" rel="stylesheet" />
<title>Temperatune</title>
<script type="module" src="./src/app.ts"></script>
<script type="module" src="./src/register-sw.ts"></script>
</head>
<body>
<noscript>This app requires JavaScript to run.</noscript>
<tt-app></tt-app>
</body>
</html>