-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
25 lines (25 loc) · 1.02 KB
/
menu.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
<html>
<head>
<title>Bounceball JS</title>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://frogletapps.github.io/assets/favicon.ico" type="image/ico">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="default.css">
</head>
<body>
<h1>Bounceball JS</h1>
<div id="start" onclick="location.href='game.html';" style="cursor:pointer;">
<h1>Start</h1>
</div>
<br>
<br>
<p>Press W and S to control the left bat</p>
<p>Press UP key and DOWN key to control the right bat</p>
<br>
<p>First player to 10 points wins</p>
<br><br>
<p>Press 1 to toggle computer control of the left paddle</p>
<p>Press 2 to toggle computer control of the right paddle</p>
<p>Press R to reset the game</p>
</body>
</html>