-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhelp.html
38 lines (33 loc) · 847 Bytes
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Game</title>
<link rel="stylesheet" href="menu.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<h2>Welcome to a shooting game</h2>
</header>
<section>
<enterGameBox>
<p></p><input type="submit" value="Back" onclick="window.location='/';" />
</enterGameBox>
<article>
<div class="row">
<div class="column">
<img src="img/wasd.jpg" alt="HTML5 Icon" width="280" height="200">
<p>Use wasd buttons to move.</p>
</div>
<div class="column">
<img src="img/mouse.png" alt="HTML5 Icon" width="280" height="200" >
<p>Use a mouse to aim and shoot.</p>
</div>
</article>
</section>
<footer>
<p>Created by Grzegorz Rypeść</p>
</footer>
</body>
</html>