-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjoin.html
103 lines (85 loc) · 3.66 KB
/
join.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
<!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">
<!-- NONE OF THESE FONTS ARE ASS -->
<!--
font-family: 'Chelsea Market', cursive;
font-family: 'Lexend Deca', sans-serif;
font-family: 'Outfit', sans-serif;
font-family: 'Roboto Mono', monospace;
font-family: 'Schoolbell', cursive;
font-family: 'Space Grotesk', sans-serif;
-->
<title>Join | Vikings Robotics</title>
</head>
<body>
<div id="header"></div>
<div style = "padding:80px;"></div>
<div class="center-container">
<p class="h">
Join Our Team!
</p>
<div class = "line red"></div>
<p class="st">
Please fill out the forms below and take a quick look at the team handbook.
</p>
<br>
<br>
<button class="st funky-button" onclick="window.location.href = 'Vikings Robotics FRC Team 2984 Handbook 2022.pdf'" target="_blank">Team Handbook</button>
</div>
<div style = "padding:20px;"></div>
<div class="center-container">
<p class="h">
Forms
</p>
<div class = "line red"></div>
<br>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSd-DOPbokiCBs00oXleAGyaj7pO1zJXGLL7V62Oh6EPrrRW7A/viewform">
<button class="st funky-button">Signup Form</button>
</a>
<br>
<br>
<br>
<a href="https://docs.google.com/document/d/1u6RgnsZwRQDUAWO2wAyvgCG0IsaTe-jBxJ0hgHqu_xk/edit">
<button class="st funky-button">Parental Agreement Form</button></a>
</div>
<div style = "padding:20px;"></div>
<div class="center-container">
<p class="h">
Safety Test
</p>
<div class = "line red"></div>
<p class="st">
Before using machines in the Robotics room you will need to complete an online safety test.
You are allowed to refer to the team handbook and safety manual for help during the safety test as it is primarily a learning experience rather than a memorization quiz.
</p>
<br>
<br>
<button class="st funky-button" onclick="window.location.href = 'https://forms.gle/qKas6vVXft4LUcNUA'">Safety Test</button>
<br>
<br>
<br>
<button class="st funky-button" onclick="window.location.href = 'Safety Handbook 2022-2023.pdf'" target="_blank">Safety Handbook</button>
</div>
</section>
<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>