-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.99 KB
/
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
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Piano Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>The Piano Game</h1>
<div class="mydiv">
<button class="cell" id="0"></button>
<button class="cell" id="1"></button>
<button class="cell" id="2"></button>
<button class="cell" id="3"></button>
<button class="cell" id="4"></button>
<button class="cell" id="5"></button>
<button class="cell" id="6"></button>
<button class="cell" id="7"></button>
<button class="cell" id="8"></button>
<button class="cell" id="9"></button>
<button class="cell" id="10"></button>
<button class="cell" id="11"></button>
<button class="cell" id="12"></button>
<button class="cell" id="13"></button>
<button class="cell" id="14"></button>
<button class="cell" id="15"></button>
<button class="cell" id="16"></button>
<button class="cell" id="17"></button>
<button class="cell" id="18"></button>
<button class="cell" id="19"></button>
<button class="cell" id="20"></button>
<button class="cell" id="21"></button>
<button class="cell" id="22"></button>
<button class="cell" id="23"></button>
<button class="cell" id="24"></button>
<button class="cell" id="25"></button>
<button class="cell" id="26"></button>
<button class="cell" id="27"></button>
<button class="cell" id="28"></button>
<button class="cell" id="29"></button>
<button class="cell" id="30"></button>
<button class="cell" id="31"></button>
<button class="cell" id="32"></button>
<button class="cell" id="33"></button>
<button class="cell" id="34"></button>
<button class="cell" id="35"></button>
</div>
<script src="main.js"></script>
</body>
</html>