-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (47 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
<!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">
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Sonsie+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Acme|Righteous&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Follow the virus</title>
</head>
<body onload="canvas.focus()">
<div class="choose">
<img src="./images/ppf-logo.png" alt="Power Puff Girls" class="logo" title="Girl Power">
<h2>Select your Power puffGirl</h2>
<ul class="select-girl">
<li id="g2">Bubbles</li>
<li id="g1">Blossom</li>
<li id="g3">Buttercup</li>
</ul>
</div>
<div class="wrap-canvas">
<div class="col">
<img src="./images/ppf-logo.png" alt="Power Puff Girls" class="logo" title="Girl Power">
<canvas id="canvas" width="800" height="400" tabindex="1"></canvas>
</div>
<div class="col">
<ul class="instructions">
<li>Instructions:</li>
<li><p></p> <i>Press enter to start/acelerate</i> </li>
<li><p></p> <i>Press spacebar to shoot</i> </li>
<li><p></p> <i>Press Arrow Up</i> </li>
<li><p></p> <i>Press Arrow Down</i> </li>
<li><button onclick="location.reload()" class="btn restart">restart</button></li>
</ul>
</div>
</div>
<div class="end">
<p class="end-score"></p>
<div id="angry" class="girl"></div>
<div id="cool" class="girl"></div>
<button onclick="location.reload()" class="btn again">Play again</button>
</div>
<script type="module"src="./index.js"></script>
</body>
</html>