forked from KonradSchieban/tetris
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1 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
32
<!DOCTYPE html>
<html>
<head>
<title>Tetris</title>
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link href="css/main.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body>
<div id="main-container" onclick="handleClickEvents(event)">
<div id="left-container">
</div>
<div id="game-container">
<div id="heading">
<h1>Tetris</h1>
</div>
<canvas id="canvas"></canvas>
<div id="footer">
<div id="level-container">
<p id="level">Level: 0</p>
</div>
<div id="row-container">
<p id="rows">Rows: 0</p>
</div>
</div>
</div>
<div id="right-container">
</div>
</div>
</body>
</html>