-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (28 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<script type="text/javascript" src="index.js"></script>
<link rel="stylesheet" href="./style.css" />
<link href="https://fonts.googleapis.com/css?family=Amatic+SC|Berkshire+Swash|Cinzel+Decorative|Coming+Soon|Dancing+Script|Fredericka+the+Great|Girassol|Jolly+Lodger|Kaushan+Script|Mountains+of+Christmas|Over+the+Rainbow|Princess+Sofia|Rock+Salt|Rye|Special+Elite|Viaoda+Libre&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="./images/favicon.ico"/>
<title>Game: Quidditch Practice</title>
</head>
<body>
<div class="game-intro">
<h1>Quidditch Practice</h1>
<h2>Fly away from the bludgers,
<br>and catch the snitch!
</h2>
<h3>Enter to Start / Stop
<br>Left / Right arrows to control the player
</h3>
</div>
<div id="game-board">
<canvas id="canvas" width="300" height="400"></canvas>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>