-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasteroids.html
More file actions
26 lines (26 loc) · 846 Bytes
/
Copy pathasteroids.html
File metadata and controls
26 lines (26 loc) · 846 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Asteroids</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto Mono">
<link rel="stylesheet" href="./css/asteroids.css">
<link rel="icon" href="./assets/favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>Asteroids</h1>
</header>
<main>
<canvas id="ast-game">There should be a game here...</canvas>
</main>
<footer>
<div><h3>Score:</h3><h3 id="score">0</h3></div>
<div><h3>Time: </h3><h3 id="timer">00:00</h3></div>
</footer>
</body>
</html>
<script src="./js/asteroidsClasses.js"></script>
<script src="./js/asteroids.js"></script>