-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (61 loc) · 2.38 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
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- <script type="text/javascript" src="./js/jquery-2.2.0.min.js"></script> -->
<script type="text/javascript" src="./js/jquery_lite.js"></script>
<script type="text/javascript" src="./js/bundle.js"></script>
<link rel="stylesheet" href="./css/tetris.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="./css/font-awesome/css/font-awesome.css" media="screen" title="no title" charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
<title>Tetris</title>
</head>
<body>
<figure class="game-box group">
<h1 class="title">Party Tetris!</h1>
<figure class="left-sidebar group">
<figure class="hold-block"></figure>
<ul class="controls group">
<li class="control"><i class="fa fa-arrow-left"></i> boogie left!</li>
<li class="control"><i class="fa fa-arrow-right"></i> boogie right!</li>
<li class="control"><i class="fa fa-arrow-up"></i> spin move!</li>
<li class="control"><i class="fa fa-arrow-down"></i> drop it down low!</li>
<li class="control"><i class="fa fa-space-shuttle"></i> switch it up!</li>
</ul>
<div class="info">
This party was started by Patrick McKelvy.
</div>
<div class="info center">
github.com/pmckelvy1
/PartyTetris
</div>
</figure>
<figure class="tetris-game group">
</figure>
<figure class="right-sidebar">
<figure class="next-block"></figure>
<h2 class="score">Score</h2>
<div class="score-box">
</div>
<h2 class="level">Level</h2>
<div class="level-num">
</div>
</figure>
</figure>
<div class="game-over color-flow">
GAME OVER
</div>
<div class="play-again color-flow">
press enter to play again!
</div>
<div class="game-start color-flow">
press enter to start partying!
</div>
<div class="level-up color-flow">
LEVEL UP
</div>
<div class="audio-player">
<iframe width="100%" height="20" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/180285991&color=ff5500&inverse=false&auto_play=true&show_user=true"></iframe>
</div>
</body>
</html>