-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (58 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Tetris Game</title>
<script src="js/app.js" charset="utf-8"></script>
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="menu-wrap">
<input type="checkbox" class="toggler" />
<div class="hamburger">
<div></div>
</div>
<div class="menu">
<div class="menu-content">
<h2 class="t-ucase">rules</h2>
<p class="rules">
Please use the <b class="key">UP</b> key to rotate your tetromino,
and <b class="key">LEFT</b> and <b class="key">RIGHT</b> to <br />
move across the board. Pressing <b class="key">DOWN</b> will speed
up the tetromino.
</p>
<button class="close fw-400">X</button>
</div>
</div>
</div>
<header>
<h1 class="fw-300 t-ucase">
Welcome <br /><span class="fw-400 t-wide t-big t-ucase">to tetris</span>
</h1>
</header>
<main class="game-area">
<div class="game">
<div class="grid"></div>
</div>
<section>
<div class="display">
<h1 class="score fw-400 t-ucase">
Your Score <br />
<span class="score-display t-ucase fw-300">0</span>
</h1>
<div class="previous-shape">
<div class="previous-grid"></div>
</div>
<h2 class="lines-display fw-400 t-ucase">
Lines:<span class="lines-score">0</span>
</h2>
</div>
<button class="button t-ucase" href="#">Start / Pause</button>
</section>
</main>
</body>
</html>