-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.2 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Stone blaster</title>
<link href = "styles/style.css" rel="stylesheet" >
<link href = "https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link href = "https://fonts.googleapis.com/css?family=Fredoka+One&display=swap" rel="stylesheet">
<link href = "https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Pacifico&display=swap" rel="stylesheet">
</head>
<!--<canvas id="canvas" width="150" height="300"></canvas> -->
<body>
<div id = "container">
<div id = "scoretable" class = "hidden">
<p>Your high scores</p>
<p id = "row1"></p>
<p id = "row2"></p>
<p id = "row3"></p>
<p id = "row4"></p>
<p id = "row5"></p>
<!--<button id = "clearscore">Clear score</button> -->
</div>
<canvas width = "1820" height="900" id = "mycanvas"></canvas>
<button id = "highscore">View High scores</button>
<button id = "reset">Reset game</button>
<button id = "mute">Mute</button>
</div>
</body>
<script src="scripts/main.js"></script>
</html>