-
Notifications
You must be signed in to change notification settings - Fork 0
/
level01.html
24 lines (24 loc) · 1017 Bytes
/
level01.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
<!-- This is the single html page that the application runs within.
Nearly all code is generated and inserted to the DOM through JavaScript -->
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Star Wars Shooter">
<meta name="keywords" content="HTML5, CSS3, JavaScript, Star Wars, Shooter">
<meta name="author" content=" 'Filty Rebel Scum' - Team 5 CI Hackathon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/sprites/favicon-32x32.png">
<title>Star Wars - Rebel Alliance Negotiation Simulator</title>
</head>
<body>
<header>
</header>
<div id="gameWindow">
<div id="gamePlayArea"></div>
</div>
<script src="./assets/js/level01.js"></script>
</body>
</html>