-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (70 loc) · 2.24 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Source+Sans+Pro&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/style.css" />
<title>Grump Cat</title>
</head>
<body>
<section id="left-side">
<div class="game-intro">
<h1>Grumpy Cat</h1>
<p>
This game is inspired by those grumpy but super funny cats who like to
push things and watch them fall just for fun and to annoy us, the
humans!
</p>
<p>The goal is:</p>
<ul>
<li>
<img
class="img-goals"
src="images/treat.png"
alt="Cat treat"
/>Collect delicious treats: score +1
</li>
<li>
<img
class="img-goals"
src="images/chocolate.png"
alt="Chocolate bar"
/>Avoid toxic chocolates, otherwise: score -1
</li>
<li>
<img class="img-goals" src="images/cup.png" alt="Cup" />Push cups:
score +10. Otherwise: lose 1 of the cat's seven lives
</li>
</ul>
<p>
Use arrow right, left, and up to play:
<img
id="game-keys"
src="images/arrow-buttons.png"
alt="Keyboard keys to play"
/>
</p>
<p>Have fun!</p>
<div class="buttons">
<button id="start-button">Start Game</button>
<button id="restart-button">Restart Game</button>
</div>
<div class="game-score">
<p id="score">Score: <span>0</span></p>
<p id="lives">Lives: <span>7</span></p>
</div>
</div>
</section>
<section id="game-board">
<canvas id="canvas" width="900" height="600"> </canvas>
</section>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>