-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1011 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
32
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World!</title>
<meta
http-equiv="Content-Security-Policy"
content="script-src 'self' 'unsafe-inline';"
/>
<link rel="stylesheet" href="./styles.css" />
<script defer src="./script.js"></script>
</head>
<body class="glass">
<div class="controls">
<section title="Volume">
<button id="vol" class="btn btn-sm btn-grab" onmousedown="volClick(event)">
<div id="dial" class="btn-dial"></div>
<span id="speaker" class="speaker"></span>
</button>
</section>
<button class="btn btn-large" id="playpause">
<div class="ic ic-play">play</div>
</button>
<section title="Sharpness">
<button class="btn btn-sm play btn-grab" onmousedown="cutoffChange(event)">
<div id="cutoff-dial" class="btn-dial"></div>
<span id="cutoff" class="cutoff"></span>
</button>
</section>
</div>
</body>
</html>