-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="./common/style2.css">
<title>Game</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<div id="bckg"></div>
<div class="center">
<div id="title">
<h1>Rush hour pedestrian</h1>
</div>
<div id="ready">
<input id="start" type="button" value="Ready" onclick="window.location.href = './game.html' + '?character=' + active"/>
</div>
<div id="chooseTitle">
<h2>Choose your<br>character:</h2>
</div>
<div id="characters">
<div id="leftCharacter">
<div id="leftImg" class="charImg" onclick="active = activeCharacter(1)"></div>
</div>
<div id="rightCharacter">
<div id="rightImg" class="charImg" onclick="active = activeCharacter(2)"></div>
</div>
</div>
</div>
</body>
<script src="./frontpage.js" type="text/javascript"></script>
</html>