-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.32 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.32 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Droid</title>
<link href="droid.css" media="all" rel="stylesheet" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
</head>
<body>
<div id="content" class="droid">
<div id="task" style="margin-bottom: 5px;">
<div class="content" style="text-align:center;">... PREPARE FOR THE DANCE ...</div>
</div>
<div id="android" class="turn_0"><div id="badness" class="scale">
<div class="robot">
<div class="robot_head"></div>
<div class="robot_limb arm left"></div>
<div class="robot_limb arm right"></div>
<div class="robot_limb leg left"></div>
<div class="robot_limb leg right"></div>
<div class="robot_body"></div>
</div>
</div></div>
<div id="box_score">
<span id="title_score">SCR:</span><span id="val_score">0</span>
</div>
<div id="buttons">
<a href="" class="button" id="left">««</a>
<a href="" class="button" id="right">»»</a>
<a href="" class="button" id="up">JMP</a>
<a href="" class="button" id="down">TLK</a>
</div>
<div id="startagain">
<a href="">YOU CAN START AGAIN NOW</a>
</div>
</div>
<script src="droid.js"></script>
</body>
</html>