-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (34 loc) · 1.16 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
<!DOCTYPE html>
<html lang='en' dir='ltr'>
<head>
<meta charset='utf-8'>
<script src='app.js' charset='utf-8'></script>
<link rel='stylesheet' href='index.css'></head>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
<title>Tetris</title>
</head>
<body>
<div class='container'>
<h2>Tetris</h2>
<div class='button-container'>
<button class='start-button'>Start/Pause</button>
<button onCLick='location.reload()'='reset-button'>Reset</button>
</div>
<h3>Score: <span id="score">0</span></h3>
<div class='grid-container'>
<div class='mini-grid'>
<script>
miniGrid()
</script>
</div>
<div class='grid'>
<script>
addDivs()
addDivsForSpace()
</script>
</div>
</div>
</div>
</body>
</html>