-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (28 loc) · 874 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
<!DOCTYPE html>
<html>
<head>
<title>Popnoid</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="game.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body onload="initBoard();">
<canvas id="bg" width="1920" height="1080"></canvas>
<div id="all">
<canvas id="speech" width="898" height="500"></canvas>
<div id="board">
<div id="game"><canvas id="c" width="476" height="500"></canvas></div>
<canvas id="score" width="350" height="25"></canvas>
<div id="bonus">
<div id="bonus16"><span></span></div>
<div id="bonus15"><span></span></div>
<div id="bonus6"><span></span></div>
<div id="bonus9"><span></span></div>
<div id="bonus13"><span></span></div>
<div id="bonus14"><span></span></div>
</div>
<div id="life"></div>
</div>
</div>
</body>
</html>