-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 1.39 KB
/
index.html
File metadata and controls
31 lines (29 loc) · 1.39 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
<!doctype html>
<html lang="en">
<head>
<title>A web audio hammond organ</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Cabin&display=swap" rel="stylesheet" />
<link href="styles/reset.css" rel="stylesheet" />
<link href="styles/index.css" rel="stylesheet" />
<link href="styles/drawbar.css" rel="stylesheet" />
<link rel="apple-touch-icon" sizes="180x180" href="resources/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="resources/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="resources/favicon-16x16.png" />
<link rel="manifest" href="resources/site.webmanifest" />
<link rel="mask-icon" href="resources/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<div class="container">
<div id="keyboard" class="keyboard">
<div class="logo">Jamónd</div>
<button id="init" class="init">Jamón feel the noize</button>
</div>
</div>
<script type="module" src="js/main.js"></script>
</body>
</html>