-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (45 loc) · 932 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<title>피아노</title>
<link rel="stylesheet" href="main.css">
</html>
<body>
<div class="piano">
<div id="C3" class="note">
<span>도</span>
<span>(a)</span>
</div>
<div id="D3" class="note">
<span>레</span>
<span>(s)</span>
</div>
<div id="E3" class="note">
<span>미</span>
<span>(d)</span>
</div>
<div id="F3" class="note">
<span>파</span>
<span>(f)</span>
</div>
<div id="G3" class="note">
<span>솔</span>
<span>(j)</span>
</div>
<div id="A3" class="note">
<span>라</span>
<span>(k)</span>
</div>
<div id="B3" class="note">
<span>시</span>
<span>(l)</span>
</div>
<div id="C4" class="note">
<span>도</span>
<span>(;)</span>
</div>
</div>
<label class="volume-controller">volume
<input type="range" class="volume-controller__input" min="0" max="1" step="0.1">
</label>
<script src="app.js"></script>
</body>