-
Notifications
You must be signed in to change notification settings - Fork 0
/
robot.html
178 lines (161 loc) · 5.42 KB
/
robot.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<html>
<head>
<link rel="shortcut icon" href="at.ico">
<meta charset="utf-8">
<title>Atomic Theory</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.css" media="screen">
<link rel="stylesheet" href="css/bootswatch.min.css">
<link href="css/fontawesome.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../bower_components/html5shiv/dist/html5shiv.js"></script>
<script src="../bower_components/respond/dest/respond.min.js"></script>
<![endif]-->
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23019901-1']);
_gaq.push(['_setDomainName', "bootswatch.com"]);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<!-- Navbar -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="/" class="navbar-brand">Atomic Theory</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="robot.html">Our Robot</a>
</li>
<li>
<a href="team.html">Team Members</a>
</li>
<li>
<a href="alumni.html">Alumni</a>
</li>
<li>
<a href="news.html">News</a>
</li>
<li>
<a href="sponsors.html">Sponsors</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
<!-- Right navbar stuff -->
<!--
<ul class="nav navbar-nav navbar-right">
<li><a href="http://builtwithbootstrap.com/" target="_blank">Built With Bootstrap</a></li>
<li><a href="https://wrapbootstrap.com/?ref=bsw" target="_blank">WrapBootstrap</a></li>
</ul>
-->
<ul class="nav navbar-nav navbar-right">
<li><a href="/zh/">中文</a></li>
</ul>
</div>
</div>
</div>
<div class="page-header">
<h1 id="tables">Our Robot</h1>
</div>
<div class="row">
<!-- <div class="col-lg-3"></div> -->
<div class="col-lg-6">
<div class="bs-component">
<div class="bs-component">
<!-- <img src="/img/bot.JPG" style="max-width: 90%;"> -->
<table class="table table-striped table-hover">
<thead>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td><b>Name</b></td>
<td>Findley</td>
<td></td>
</tr>
<tr>
<td><b>Autonomous</b></td>
<td>Scores Climbers</td>
<td>45 points</td>
</tr>
<tr>
<td><b>Tele-op</b></td>
<td>Push blocks into floor goal, 3 Zipliners</td>
<td>60+ points</td>
</tr>
<tr>
<td><b>End-game</b></td>
<td>Pullup</td>
<td>80 points</td>
</tr>
<tr>
<td><b>Choice of beverage</b></td>
<td>Gin Martini</td>
<td></td>
</tr>
<tr>
<td><b>Total Points</b></td>
<td></td>
<td>185+ points</td>
</tr>
</tbody>
</table>
</div><!-- /example -->
</div>
</div>
<div class="col-lg-6">
<table class="table table-striped table-hover">
<thead><tr>
<td>Competition</td>
<td>Preliminary Seed</td>
<td>Awards</td>
</tr></thead>
<tbody>
<tr>
<td>Fall Harvest Qualifier in Marlton, NJ</td>
<td>2nd</td>
<td>Innovate Award, Finalist Alliance 1st Pick</td>
</tr>
<tr>
<td>Corning, NY Qualifier</td>
<td>1st</td>
<td>Innovate Award, Finalist Alliance Captain</td>
</tr>
<tr>
<td>John Dewey Qualifier in Brooklyn, NY</td>
<td>3rd</td>
<td>Inspire 2nd Place, PTC Design Award, Winning Alliance 1st Pick</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>