-
Notifications
You must be signed in to change notification settings - Fork 0
/
ohms.html
29 lines (29 loc) · 897 Bytes
/
ohms.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="ohms.js"></script>
<link href="ohms.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400;1,700" rel="stylesheet">
</head>
<body>
<div id="viewer" role="main">
<div id="main-metadata"></div>
<div id="player"></div>
<div id="controls"></div>
<div id="transcript-window">
<div id="transcript"></div>
</div>
<div id="index"></div>
</div>
</div>
<dialog id="info">
<button id="info-close" class="fa" aria-label="Close" title="Close" autofocus></button>
<div id="info-content"></div>
</dialog>
</body>
<script>
main(Object.fromEntries(new URLSearchParams(window.location.search)));
</script>
</html>