]> git.cworth.org Git - lmno.games/blob - empires/index.html
Correct a couple of typos in the welcome paragraph
[lmno.games] / empires / index.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <title>The Game of Empires</title>
5
6     <link rel="stylesheet" href="style.css" type="text/css" />
7   </head>
8 <body>
9
10   <script src="empires-client.js"></script>
11
12   <h1>Welcome to the game of Empires!</h1>
13
14   <p>
15     To join the game, type your own name below. Also, choose the name
16     of a character that you want to play as. This can be anyone (real
17     or fictional) that everyone playing the game would be likely to
18     know, (for example "Albert Einstein" or "Harry Potter").
19   </p>
20
21   <p>
22     Note: After you have joined the game, another player can use this
23     same device to join the game as well.
24   </p>
25
26   <div id="message-area">
27   </div>
28
29   <form>
30     <label for="name">Your name</label>
31     <input type="text" id="name" required>
32
33     <label for="character">Character name</label>
34     <input type="text" id="character" required>
35
36     <input type="button" value="Join game" onclick="register(this.form)">
37   </form>
38
39 </body>
40 </html>