-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 814 Bytes
/
index.html
File metadata and controls
31 lines (29 loc) · 814 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tetris</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<header>
<div class="header__content">
<span class="header__logo"></span>
<span class="header__title">Blocks (so I don't get sued)</span>
<span class="header__hamburger"></span>
</div>
</header>
<main>
<div class="game">
<div class="game__board"></div>
<div class="game__controls">
<button id="stop">Pause</button>
<button id="start">Resume</button>
</div>
</div>
</main>
<script src="./visualConsole.js"></script>
<script src="./js/bnmr.js"></script>
<script src="./js/main.js" type="module"></script>
</body>
</html>