-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgame.html
43 lines (37 loc) · 1.27 KB
/
game.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
39
40
41
42
43
<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<head>
<script src="jquery.min.js"></script>
<script src="jquery.cookie.js"></script>
<script src="stats.js"></script>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="bootstrap-theme.min.css">
<script src="bootstrap.min.js"></script>
<link rel="stylesheet" href="stats.css">
<title>Avalon</title>
</head>
<body>
<div class="container">
<img style="float: right;" src="home.png" />
<h2 style="text-align: center">Avalon</h2>
<div style="text-align: center;" id="gameover"></div>
<br />
<ul class="list-group" id="players">
<li class="list-group-item">
<h4>Players</h4>
</li>
</ul>
<div class="list-group" id="missions">
<a class="list-group-item">
<h4>Missions</h4>
</a>
</div>
<br />
<a href="/">
<button class="btn btn-lg btn-danger btn-block" id="btn_back">Back</button>
</a>
</div>
</div>
</body>
</html>