-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 982 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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
@font-face {
font-family: 'Pixel';
src: local('PixelOperator'), url(./PixelOperator.woff2) format('woff2');
/* other formats include: 'woff2', 'truetype, 'opentype',
'embedded-opentype', and 'svg' */
}
@font-face {
font-family: 'PixelMono';
src: url(./PixelOperatorMono.woff2) format('woff2');
/* other formats include: 'woff2', 'truetype, 'opentype',
'embedded-opentype', and 'svg' */
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="98/style.css"
>
<title>Web Audio Lab</title>
</head>
<body>
<span style="font-family: 'Pixel'; display: none;">a</span>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>