-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (80 loc) · 3.77 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>Play - Animal Chess</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Baloo+Tamma" rel="stylesheet">
<!--<link rel="stylesheet" href="./font-awesome-4.6.3/css/font-awesome.min.css">-->
<script src="https://use.fontawesome.com/aaef62b982.js"></script>
<script type="text/javascript" src="jquery/jquery-3.1.0.min.js"></script>
<link rel="stylesheet" type="text/css" href="./css/over1240px.css" />
<link rel="stylesheet" type="text/css" href="./css/below650px.css" />
<link rel="stylesheet" type="text/css" href="./css/revivalList.css" />
<link rel="stylesheet" href="css/validMove.css">
<link rel="stylesheet" href="css/wiggle.css">
</head>
<body>
<div class="header">
<p id="title" class="animal_chess">Animal Chess</p>
</div>
<!-- SIDE MENU FOR MOBILE or WINDOW THAT IS LESS THAN 650PX WIDE -->
<div id="side_menu_bar" class="side_menu">
<ul>
<li><a href="javascript:void(0)" onclick="close_side_menu()"><i class="fa fa-times-circle" aria-hidden="true"></i></a></li>
<li>
<form action="./members/logout_action.php">
<button class="logout_btn" type="submit">Log Out</button>
</form>
</li>
<li><a href="./index.html">Play</a></li>
<li><a href="./instruction.html">How to</a></li>
<li><a href="./about.html">About</a></li>
<p> © 2016 - website built by Doe Hoon LEE</p>
</ul>
</div>
<span id="span" style="font-size:25px;cursor:pointer" onclick="open_side_menu()"><i class="fa fa-bars sideMenu" aria-hidden="true"></i></span>
<!-- ANIMAL REVIVAL PAGE -->
<div id="animal_revival" class="animal_side">
<table id="dead_animals">
<tr id="killed_red">
<td class="red_sheep"></td>
<td class="red_cow"></td>
<td class="red_rabbit"></td>
<td class="red_lion"></td>
</tr>
<tr id= "killed_blue">
<td class="blue_sheep"></td>
<td class="blue_cow"></td>
<td class="blue_rabbit"></td>
<td class="blue_tiger"></td>
</tr>
</table>
<i id="revivalMenuClose" class="fa fa-times-circle" aria-hidden="true"></i>
</div>
<span id="spanTwo" style="font-size:25px;cursor:pointer"><i id="revivalMenuOpen" class="fa fa-bars" aria-hidden="true"></i></span>
<div class="navbar">
<ul>
<li>
<form action="./members/logout_action.php">
<button class="logout_btn" type="submit">Log Out</button>
</form>
</li>
<li><a href="./index.html">Play</a></li>
<li><a href="./instruction.html">How to</a></li>
<li><a href="./about.html">About</a></li>
</ul>
</div>
<div class="game_table">
<table id="game_board"></table>
</div>
<div class="button">
<button class="play btn" type="button" id="start" onclick="start()"> START! </button>
</div>
<div class="copyright">
<h3> © 2016 - website built by Doe Hoon LEE </h3>
</div>
<script type="text/javascript" src="slideMenu.js"></script>
<script type="text/javascript" src="animalCell.js"></script>
<script type="text/javascript" src="animal.js"></script>
</body>
</html>