forked from MirisanRavindran/OTU-Robotics-Website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsponsor.html
127 lines (98 loc) · 5.48 KB
/
sponsor.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sponsor | 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/sponsor.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-sponsor">
<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="apply" uk-scrollspy="cls: uk-animation-slide-left">APPLY</a></li>
<li><a href="staff" uk-scrollspy="cls: uk-animation-slide-left">STAFF</a></li>
<li><a href="donation" uk-scrollspy="cls: uk-animation-slide-left">DONATE</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" style="font-weight:bold">Sponsor Us</h1>
</section>
<!------- content -------->
<section class="staff">
<div class="why-sponsor">
<h2>Why Sponsor?</h2>
<div class="text">
Ontario Tech Robotics is the largest student-run organization and aims to provide students with the
opportunity to apply their knowledge and skills to real-world engineering problems. <br><br>
By becoming a sponsor, you join a community of forward-thinking organizations supporting innovation
and education. <br><br>
Sponsors gain exposure, recognition, and the opportunity to display their brand prominently
alongside cutting-edge projects and advancements in robotics.<br><br>
<h3><a href="contact">Contact us</a> for sponsoring inquiries.</h3>
</div>
</div>
<div class="sponsor-section">
<hr>
<div class="text">Ontario Tech RoboMaster and Ri3D would like to thank the following sponsors for their
generous support during our build season. <br><br>
</div>
<div class="sponsor-grid">
<!-- Sponsor 1 -->
<div class="sponsor-logo">
<img src="images/ace_logo.webp" alt="ACE logo">
</div>
<!-- Sponsor 2 -->
<div class="sponsor-logo">
<img src="images/eng_faculty_logo.webp" alt="Engineering Faculty logo">
</div>
<!-- Sponsor 3 -->
<div class="sponsor-logo">
<img src="images/solidworks_logo.webp" alt="SolidWorks Logo">
</div>
</div>
</div>
</section>
<!------- end of content -------->
<!-------- footer ---------->
<section class="footer">
<h4>Sponsor Us</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>