-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
66 lines (56 loc) · 3.21 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="./images/logo-svg.svg">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Lexend+Deca:wght@400;500&family=Outfit:wght@200;300&family=Roboto+Mono:wght@180;700&family=Schoolbell&family=Space+Grotesk:wght@300&display=swap" rel="stylesheet">
<link href="./styles/styles.css" rel="stylesheet">
<link href="./styles/new-shit-greg-added.css" rel="stylesheet">
<title>About | Vikings Robotics</title>
</head>
<body>
<div id="header"></div>
<div class="fullpage" style="background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/resources.jpeg');">
<div class="title-page">
<h1>About Us</h1>
<p>Learn more about Vikings Robotics and what we value.</p>
</div>
</div>
<div class="fullpage long" style="background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/writing.jpeg');">
<div class="fullpage-text">
<div>
<h1>What We Represent</h1>
<p>We are a student-run group that strives to foster interest in STEM through hands-on experiences in robotics. Our team participates in FIRST (For inspiration and Recognition of Science and Technology) Robotics Competition, an international organization that involves students in STEM. Through our program, students gain valuable hands-on STEM experience not available in traditional public high School education. The opportunities presented by the FIRST program also develop students' leadership abilities and business skills.</p>
</div>
<div>
<h1>Our Team</h1>
<ul class="about-list">
<li>15 student members</li>
<li>5 returning members</li>
<li>10 rookie members</li>
<li>2 mentors and a school advisor</li>
<li>Suportive parents and local community</li>
</ul>
</div>
<div>
<h1>Our History</h1>
<p>Vikings Robotics has participated in the FIRST Robotics Competition since 2009. It has made some notable achievements, including a quarterfinalist in the 2022 San Diego regional, semifinalist in 2019 and 2018, and winner of the 2011 Las Vegas regional.</p>
</div>
</div>
</div>
<div id="footer"></div>
<script src="https://code.jquery.com/jquery-3.6.0.js"integrity=" sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="./src/script.js"></script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
</body>
</html>