-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (38 loc) · 1.45 KB
/
index.html
File metadata and controls
44 lines (38 loc) · 1.45 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>David's Tetris</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Bentham|Fredericka+the+Great|Patrick+Hand+SC&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="https://static.thenounproject.com/png/3456652-200.png">
<script type="text/javascript" src="scripts/app.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Train+One&display=swap" rel="stylesheet">
</head>
<body>
<section>
<div class="grid"></div>
<div class="rightpanel">
<article class="about">
<h1 class="title">David's Tetris</h1>
</article>
<div class="instructions">
<p>Rotate within the central area</p>
</div>
<audio id="scoreSound"></audio>
<div class="scoreboard">Score:<br><span class="score"> 0 </span></div>
<div class="highscoreboard">Highscore:<br/><span class="highscore">0</span></div>
<div class="resetDiv">
<button class="reset">Reset</button>
</div>
<h3 class="music-title">Music</h3>
<div class="music-buttons">
<audio id="audio"></audio>
<button class="music">Play</button>
<button class="stopMusic">Stop</button>
</div>
</div>
</section>
</body>
</html>