-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (24 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Game Title -->
<title>Tron</title>
<!-- Import external stylesheets -->
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Bungee&display=swap" rel="stylesheet">
<!-- Import Unboared UMD library (Javascript) -->
<script src="https://developers.unboared.com/unboared-lib/umd/v0.3.1/unboared-lib.js"></script>
</head>
<!-- Instanciate the Tron object -->
<body onload="window.app = new Tron(900, 750)">
<h1 style="margin:15px 0 10px 0;">Unboared Demo</h1>
<!-- The game will be displayed in this canvas -->
<canvas id="tron" width="900" height="750"></canvas>
<!-- Import the logic of the game (the Tron class) -->
<script src="tron.js"></script>
</body>
</html>