-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.html
More file actions
24 lines (23 loc) · 762 Bytes
/
tutorial.html
File metadata and controls
24 lines (23 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Platform Fight</title>
<link rel="stylesheet" href="tutorial.css">
</head>
<body>
<div id="howToPlay-ui">
<h1>How to Play:</h1>
<p>Use A and D to move left and right</p>
<p>Press Space to Jump</p>
<p>Avoid the Mushrooms!</p>
<p>If you fail to avoid the mushrooms, you will have to get rid of them!</p>
<p>Click the Mushrooms until they go away, but its easier said than done!</p>
<p>If you take to long to get rid of a mushroom, its GAME OVER!</p>
<a href="index.html">
<button>Return to Main Menu</button>
</a>
</div>
</body>
</html>