-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrobots.html
75 lines (75 loc) · 2.35 KB
/
robots.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
<!DOCTYPE html>
<html>
<head>
<title>LANLords - Robots</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="index.php">FTC Team 4977</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="media.html">Media</a>
</li>
<li>
<a href="events.php">Events</a>
</li>
<li class="active">
<a href="#">Robots</a>
</li>
<li class="">
<a href="about-us.html">About Us</a>
</li>
<li class="">
<a href="https://github.com/FTCTeam4977/">Code</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="offset1 span6 heroBackground">
<h2>2011-2012: "Ping"</h2>
<p>Ping played in <a href="http://www.youtube.com/watch?v=HUrKrKj6l-s" target="_blank">Bowled Over</a>, a bowling based game involving crates and racquetballs.</p>
</div>
<div class="span4">
<img src="resources/images/robots/2011-2012_ping.jpg" alt="2011-2012:Ping">
</div>
</div>
<div class="row">
<div class="offset1 span6 heroBackground">
<h2>2012-2013: "The Black Box"</h2>
<p>The Black Box played in <a href="http://www.youtube.com/watch?v=oIQtLqLT654" target="_blank">Ring It Up</a>, a tic-tac-toe based game involving rings.</p>
</div>
<div class="span4">
<img src="resources/images/robots/2012-2013_the-black-box.jpg" alt="2012-2013:The Black Box">
</div>
</div>
</div>
<div class="navbar navbar-inverse navbar-fixed-bottom">
<div class="navbar-inner">
<div class="container">
<p class="muted navbar-text">© LAN Lords 2013</p>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>