-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (50 loc) · 2.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon-16x16.png">
<link rel="manifest" href="assets/images/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- end Favicon -->
<!-- Bootstrap JS -->
<script src="/bootstrap/js/bootstrap.min.js"></script>
<!-- end -->
</head>
<!-- Navigation bar -->
<div id="nav-placeholder"></div>
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
<!-- end of Navigation bar -->
<logo>
<p><img src="assets/images/club_logo.png" alt="Club Logo" width="300"></p>
<h1 id="rockville-robotics-the-incredibots">Rockville Robotics - The Incredibots</h1>
<p><strong>Team 0333</strong></p>
</logo>
<body>
<h2 id="about-us">About Us</h2>
<p>We are a public high school team from Rockville, Maryland in the Greater DC region. We got Fifth Place Overall at the Global Conference for Educational Robotics (GCER) in 2019.</p>
<p>We push to this GitHub repository very frequently. We utilize <a href="https://travis-ci.com/">Travis CI</a> for <a href="https://en.wikipedia.org/wiki/Continuous_integration">continuous integration</a> to improve our code quality.</p>
<h2 id="authors">Authors</h2>
<p>Our code is written in Python 2 & 3 by Jaxon Lee, Lucas F., Tristan U., James Espericueta, Jawad Hanif, Emmet G., Xavier Y., Oliver V., Mortimer S., Michael M., Jesse Abinsay, and Axel Carmona.</p>
<h2 id="sponsors">Sponsors</h2>
<p><strong>Thank you <a href="https://newwave-foundation.org">NewWave Foundation</a> for supporting us!</strong></p>
<h2 id="artist-credits">Artist Credits</h2>
<p>Our logo was designed by Theo Pauwels. Check out more of his cool designs <a href="https://shop.spreadshirt.com/Rockville-Merch/">here</a>.</p>
<p><img src="assets/images/theo_pauwels_designs.png" alt="Designs By Theo Pauwels" width="250"></p>
</body>
<footer>
<p>2020: The Incredibots</p>
<p>All of our code is Open Source under the GNU GPLv3, including the code for this website.</p>
<p>Disclaimer: Our website is under heavy renovation at the moment. Please excuse the mess.</p>
</footer>
</html>