-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (39 loc) · 1.75 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
33
34
35
36
37
38
39
40
41
<!-- <!DOCTYPE html> -->
<html>
<head>
<title>Pandemic Endgame</title>
<link rel ="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<br>
<h1><span id="heading">Go Corona Go</span> </h1>
<div id='chooseCharacter'>
<h3><span style="font-family: 'Press Start 2P', cursive;"> Play as:</span></h3>
<select id="skin">
<option value="america">Capt. America</option>
<option value="ironman">Iron man</option>
<option value="thor">Thor</option>
<option value="hulk">Hulk</option>
<option value="widow">Black Widow</option>
</select>
<p ><button type="button" id='startGame' style="font-family: 'Press Start 2P', cursive;">
Start
</button></p>
</div>
<!-- game over -->
<div id='gameOver' style="font-family: 'Press Start 2P', cursive;">
<h2> Game Over </h2>
<p><button type="button" id='playAgain' style="font-family: 'Press Start 2P', cursive;">
Play Again
</button></p>
</div>
<script type="text/javascript" src="sketch.js"> </script>
<script type="text/javascript" src="avenger.js"> </script>
<script type="text/javascript" src="object.js"> </script>
<script type="text/javascript" src="./lib/p5.min.js"> </script>
<script type="text/javascript" src="./lib/p5.collide2d.min.js"> </script>
</body>
</html>