-
Notifications
You must be signed in to change notification settings - Fork 3
/
selection.html
59 lines (57 loc) · 2.11 KB
/
selection.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
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project: Giant Robot Puppet</title>
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/PuppetDisplay.css">
<script src="js/jquery.min.js"></script>
</head>
<body>
<div class="large-12 columns">
<div class="row mobile-open">
<div class="large-12 small-12 columns text-center">
<h1>Selection</h1>
<p>Choose (click) which puppet part you would like to control to move to the corresponding control page</p>
<div class="row"></div>
</div>
</div>
<div class="row callout ">
<div class="small-2 columns">
<div class="puppetLine" id="torso">
<div class="torso text-center">
<a href="/back.html">Back<br>Shoulders</a>
</div>
</div>
</div>
<div class="small-2 columns">
<div class="puppetLine" id="rarm">
<div class="rarm text-center">
<a href="/RightArm.html">R Arm</a>
</div></div>
</div>
<div class="small-2 columns">
<div class="puppetLine" id="head">
<div class="head text-center">
<a href="/Head.html">Head</a>
</div></div>
</div>
<div class="small-2 columns">
<div class="puppetLine" id="larm">
<div class="larm text-center">
<a href="/LeftArm.html">L Arm</a>
</div>
</div>
</div>
<div class="small-2 columns">
<div class="puppetLine" id="legs">
<div class="legs text-center">
<a href="/knees.html">Knees<br>Heels</a>
</div></div>
</div>
</div>
</div>
</body>
</html>