-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (27 loc) · 1.04 KB
/
index.html
File metadata and controls
31 lines (27 loc) · 1.04 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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles.css" </head>
<body>
<h1>Music Magic</h1>
<div class="piano">
<div class="keys">
<div class="key white" id="note-c"></div>
<div class="key black" id="note-c-sharp"></div>
<div class="key white" id="note-d"></div>
<div class="key black" id="note-d-sharp"></div>
<div class="key white" id="note-e"></div>
<div class="key white" id="note-f"></div>
<div class="key black" id="note-f-sharp"></div>
<div class="key white" id="note-g"></div>
<div class="key black" id="note-g-sharp"></div>
<div class="key white" id="note-a"></div>
<div class="key black" id="note-a-sharp"></div>
<div class="key white" id="note-b"></div>
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>