-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
37 lines (32 loc) · 922 Bytes
/
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
<!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>
<form action='goGame' method="post">
<h3>Enter your nick</h3><br>
<input type="text" value="" name="nick"><p></p>
<input type="submit" value="Ok!"><p></p>
</form>
<input type="submit" value="Help" onclick="window.location='help.html';" /><p></p>
</enterGameBox>
<article>
<h1>About</h1>
<p>This is a 2d shooting game. Server and client side are pure Javascript. Damn, that's crazy.</p>
<p>Graphic library is PIXI.js. Enjoy your stay. Don't try this at home. Peace.</p>
</article>
</section>
<footer>
<p>Created by Grzegorz Rypeść</p>
</footer>
</body>
</html>