-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (60 loc) · 2.06 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
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tetris</title>
<link href="style.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
</head>
<body>
<header>
<nav class="z-depth-0 navbar">
<div class="nav-wrapper white lighten-4">
<a href="/" class="brand-logo black-text center" id="navbar-branding">TETRIS</a>
</div>
</nav>
</header>
<div class="row">
<div class="row center-align">
<div class="col s12 m4 l2"><p></p></div>
<div class="col s12 m4 l5" >
<canvas id="game"
class="game-canvas"
width="525px"
height="525px">
</canvas>
<h3 class="gameOver"></h3>
</div>
<br>
<br>
<div class="col s12 m4 l3" >
<div class="card-panel white">
<span class="black-text">
<div>
<h4>GamePlay</h4>
Play with Space Bar & Arrow Keys<br><br>
Start & Speed: Space<br><br>
Left: Left<br>
Right: Right<br>
Rotate: Up<br><br>
Tetris was built by Jhun de Andres & Aaron Careaga for the GameTime project in Module 4 at the Turing School. The game was implemented entirely in Javascript and jQuery using Lodash and HTML5 canvas.
</div>
</span>
</div>
<br>
<h4>Score: <span class='score'></span></h4>
</div>
<div class="col s12 m4 l2"><p></p></div>
</div>
</div>
<footer class="page-footer white">
<div class="footer-copyright">
<div class="container">
<a class="black-text text-lighten-4 left" href="https://github.com/joshuajhun" target="_blank">Made by Jhun de Andres '</a><a class="black-text text-lighten-4 left" href="https://github.com/acareaga" target="_blank"> & Aaron Careaga</a>
<div class= "black-text text-lighten-4 right">© 2016 Tetris Gametime</div>
</div>
</div>
</footer>
<script src="main.bundle.js"></script>
</body>
</html>