-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (95 loc) · 3.95 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
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
<!doctype html>
<html>
<head>
<title>Eastern Edge</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles -->
<link rel="stylesheet" href="style/style.css" type="text/css" media="screen, projection" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand"><img src="images/eer-logo-2lines.png" alt="Eastern Edge Robotics"</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="missions.html">Missions</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<!-- Carousel
================================================== -->
<div id="eerCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#eerCarousel" data-slide-to="0" class="active"></li>
<li data-target="#eerCarousel" data-slide-to="1"></li>
<li data-target="#eerCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="images/eer-galaxy-logo.jpg" alt="Old Paulina Logo">
<div class="carousel-caption">
<p>Connect with us on <a href="https://www.facebook.com/easternedgerobotics"><u>Facebook!</u></a></p>
</div>
</div>
<div class="item">
<img src="images/hands-notebook.JPG" alt="Hard at work">
</div>
<div class="item">
<img src="images/deck-crew.jpg" alt="Deck Crew">
<div class="carousel-caption">
<p>2016 Deck Crew</p>
<p>Photo credit: MATE Facebook page</p>
</div>
</div>
</div>
<!-- Left and right carousel controls -->
<a class="left carousel-control" href="#eerCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#eerCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container marketing">
<!-- Three columns of text below the carousel -->
<div class="row">
<div class="col-lg-4">
<h2>2016 MATE International ROV Competition Explorer Class Champions!</h2>
<p></p>
<p><a class="btn btn-default" href="champions.html" role="button">View details »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<h2>Employee Reflection</h2>
<p>This year's pilot, Keely, is a new employee</p>
<p><a class="btn btn-default" href="keely_reflection" role="button">View details »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<h2>EER Goes to NASA</h2>
<p>This year's MATE ROV Competition is in Houston</p>
<p><a class="btn btn-default" href="NASA.html" role="button">View details »</a></p>
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
<!-- FOOTER -->
<footer>
<p class="pull-right"><a href="#">Back to top</a></p>
<p class="pull-left">© 2016 Eastern Edge Robotics </p>
</footer>
</div><!-- /.container -->
</body>
</html>