-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapply.html
92 lines (76 loc) · 4.39 KB
/
apply.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apply | OTU Robotics</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.17.11/css/uikit-core-rtl.min.css">
<!-- Bootstrap Framework -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,600,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" type="image/x-icon" href="images/OTRobotics.ico">
</head>
<body>
<section class="sub-header">
<nav>
<a class = "logo" href="/" uk-scrollspy="cls: uk-animation-slide-left"><img src="images/logo.webp"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-close" onclick="hideMenu()"></i>
<ul>
<li><a href="/" uk-scrollspy="cls: uk-animation-slide-left">HOME</a></li>
<li><a href="robomaster" uk-scrollspy="cls: uk-animation-slide-left">ROBOMASTER</a></li>
<li><a href="ri3d" uk-scrollspy="cls: uk-animation-slide-left">RI3D</a></li>
<li><a href="members" uk-scrollspy="cls: uk-animation-slide-left">MEMBERS</a></li>
<li><a href="sponsor" uk-scrollspy="cls: uk-animation-slide-left">SPONSOR US</a></li>
<li><a href="photos" uk-scrollspy="cls: uk-animation-slide-left">PHOTOS</a></li>
<li><a href="news" uk-scrollspy="cls: uk-animation-slide-left">NEWS</a></li>
<li><a href="contact" uk-scrollspy="cls: uk-animation-slide-left">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<h1 uk-scrollspy="cls: uk-animation-slide-bottom">Apply</h1>
</section>
<!------- content -------->
<section class="about-us">
<div class="row">
<div class="about-col">
<h1>We are <b>creators</b>, <b>designers</b>, <b>innovators</b> and <b>engineers</b>.</h1>
<p>Join us today and become part of the largest student-run group at Ontario Tech University! Click the button below to apply
to both <b>RI3D and Robomaster</b>, and different sub-teams including <b>mechanical, design, electrical, programming and business/media</b>.
We hope to see you soon as a part of us!</p>
<a href="https://forms.gle/wdA3eL8i9SQSatXGA" class="hero-btn red-btn">APPLY NOW</a>
</div>
<div class="about-col">
<img src="images/Ri3D2023.webp">
</div>
</div>
</section>
<!-------- footer ---------->
<section class="footer">
<h4>Apply</h4>
<p>Ontario Tech Robotics</p>
<div class="icons">
<a href="https://www.facebook.com/otrobomaster" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com/otrobomaster" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.instagram.com/otrobomaster/" target="_blank"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/otrobomaster" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
<h5 style = "font-weight: 700; font-size:0.83em">MADE BY  <a style = "font-weight: 500;">MIRISAN, MATTHEW, SHEKINA, AND MEMBERS</a></h5>
</section>
<!----JavaScript for toggle menu---->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu() {
navLinks.style.right = "0";
}
function hideMenu() {
navLinks.style.right = "-200px";
}
</script>
<!---- Bootstrap Library ---->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<!---- UiKitmin Library ---->
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.17.11/js/uikit.min.js"></script>
</body>
</html>