-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.33 KB
/
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
<!DOCTYPE html>
<!--Author: Alan Zeng-->
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Play Avalon the Game, simple and clean.">
<meta name="keywords" content="Avalon, Avalon the game, Resistance, The Resistance, avalon online">
<meta name="author" content="Alan Zeng">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type="text/javascript"></script>
<link rel = "stylesheet" href="css/main.css">
</head>
<body>
<div id = "Title">
<p> AVALON </p>
</div>
<hr>
<div id = "button" class="wrapper">
<button id="ngButton" type= "button" class = "myButton">New Game</button>
<button id="jgButton" type= "button" class = "myButton">Join Game</button>
</div>
<div id= "helpButtonDiv" class="wrapper">
<a id='helpButton' class = "help">❓</a>
</div>
<div id='helpDiv' class="wrapper">
<p id= 'helpText'>New Game: Create a new game of Avalon.<br>Join Game: Join an existing online lobby.<br>Avalon Rules:Refer to <a href='https://github.com/alanzeng17/Avalon' target="_blank">here<a> in the README located at the bottom of the page for full rules and information.</p>
</div>
<hr>
<script src="script/animation.js"></script>
<script src="script/game.js"></script>
</body>
</html>