-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·37 lines (31 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>Gintama Nobunaga's Regurgitation</title>
<link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
<link href="css/tetris.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="mainContainer">
<div id="menu">
<h1><span class="headerNob1">Nobunaga's</span><br/><span class="headerNob2">Regurgitation</span></h1>
<p><canvas id="upcoming"></canvas></p>
<p>A drunk Nobunaga will vomit various shapes from above the screen. When you line them up in a row, the vomit will disappear. When your screen is filled with vomit, you lose.</p>
<p id="start">Press 'Spacebar' to play.</p>
</div>
<div id="tetrisGame">
<div id="numbers">
<div id="scoreArea"><p>Score<br/><span id="score">000000</span></p></div>
<div id="rowArea"><p>Rows<br/><span id="rows">0</span></p></div>
</div>
<div id="game">
<canvas id="canvasTetris">Sorry, this example cannot be run because your browser does not support the <canvas> element </canvas>
</div>
</div>
<div class="clear"> </div>
</div>
<div id="footer">deafinbothears.com</div>
<script src="js/stats.js"></script>
<script src="js/tetris.js"></script>
</body>
</html>