-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·233 lines (206 loc) · 8.63 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
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Stanford Student Robotics</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:800" rel="stylesheet">
<!-- Custom styles -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="vendor/simple-line-icons/css/simple-line-icons.css">
<link href="css/main.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/RoboLogo.png" alt="">
<span class="ml-1">Stanford Robotics</span>
</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse"
data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#teams">Teams</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#join">Join</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#sponsors">Sponsors</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- HEADER -->
<header>
<div class="overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="vids/doggo_noaudio.mp4" type="video/mp4">
</video>
<div class="container h-100">
<div class="d-flex h-100 text-center align-items-center">
<div class="w-100 text-white">
<span class="display">The one stop shop for the robot apocalypse.</span>
</div>
</div>
</div>
</header>
<!-- TEAMS -->
<section class="teams" id="teams">
<div class="container">
<div class="section-heading text-center">
<h2>Our Teams</h2>
<p>Find your fit amongst our exciting projects!</p>
<hr>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="rounded-row-item">
<img class="mx-auto text-center img-fluid rounded-circle" src="img/rover1.jpg" alt="">
<h4>Mars Rover</h4>
<p>
Every year we embark on the journey to build a rover from scratch to innovate and educate. From repairing equipment, to traversing extreme terrain, our rovers require complex feats of engineering to compete.
</p>
</div>
</div>
<div class="col-md-4">
<div class="rounded-row-item">
<img class="mx-auto text-center img-fluid rounded-circle" src="img/doggo1.jpg" alt="">
<h4>Extreme Mobility</h4>
<p>
We build open-source legged robots that push the boundary of where robots can go. Our latest robot, Stanford Doggo, received worldwide recognition after setting a new bar for robot agility at an affordable price.
</p>
</div>
</div>
<div class="col-md-4">
<div class="rounded-row-item">
<img class="mx-auto text-center img-fluid rounded-circle" src="img/explore1.jpg" alt="">
<h4>Explore</h4>
<p>
Three new teams for which we will define the goal of the projects soon. These teams will offer more mentorship through big weekly meetings in between all explore teams. Stay tuned for further updates!
</p>
</div>
</div>
</div>
<div class="text-center">
<a href="/teams.html" class="btn btn-outline btn-xl js-scroll-trigger">Learn More</a>
</div>
</div>
</section>
<!-- JOIN -->
<section class="join text-center" id="join">
<div class="container">
<div class="row">
<div class="col-md-8 mx-auto">
<h2 class="section-heading">Join us!</h2>
<p>Join our slack channel! Then, come to a quick build or any team meeting you’re interested in!</p>
<a href="https://stanfordroboticsclub.slack.com/signup" class="btn btn-outline btn-xl js-scroll-trigger">I'm down!</a>
</div>
</div>
</div>
<div class="overlay"></div>
</section>
<!-- CONTACT -->
<section class="teams" id="contact">
<div class="container">
<div class="section-heading text-center">
<h2>Reach out!</h2>
<p>Feel free to reach out to us for any questions. Shoot us an email or just dm us in Slack!</p>
<hr>
</div>
<div class="row">
<div class="col-md-6">
<div class="rounded-row-item">
<img class="mx-auto img-fluid rounded-circle" src="img/rita.jpg" alt="">
<h4>Rita Tlemçani | President</h4>
<a href="mailto:[email protected]"><p>[email protected]</p></a>
</div>
</div>
<div class="col-md-6">
<div class="rounded-row-item">
<img class="mx-auto img-fluid rounded-circle" src="img/connor.jpg" alt="">
<h4>Connor Tingley | President</h4>
<a href="mailto:[email protected]"><p>[email protected]</p></a>
</div>
</div>
</div>
</div>
</section>
<!-- SOCIAL -->
<section class="social bg-social">
<div class="container">
<h2>We
<i class="fas fa-heart"></i>
new friends!</h2>
<ul class="list-inline list-social">
<li class="list-inline-item social-slack">
<a href="https://stanfordroboticsclub.slack.com/signup">
<i class="fab fa-slack-hash"></i>
</a>
</li>
<li class="list-inline-item social-twitter">
<a href="https://www.twitter.com">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item social-facebook">
<a href="https://www.facebook.com/stanfordrobotics/">
<i class="fab fa-facebook-f"></i>
</a>
</li>
</ul>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="container">
<span> Made with <i class="fas fa-heart" style="color: #e25555;"></i> in Packard</span>
<ul class="list-inline">
<li class="list-inline-item">
<a class="js-scroll-trigger" href="#page-top">Home</a>
</li>
<li class="list-inline-item">
<a href="/teams.html">Teams</a>
</li>
<li class="list-inline-item">
<a class="js-scroll-trigger" href="#join">Join</a>
</li>
<li class="list-inline-item">
<a class="js-scroll-trigger" href="https://stanfordroboticsclub.slack.com/signup">Contact</a>
</li>
<li class="list-inline-item">
<a href="#sponsors">Sponsors</a>
</li>
</ul>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/scroll-helper.js"></script>
</body>
</html>