-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
442 lines (391 loc) · 23.4 KB
/
index.php
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<?php
session_start();
session_unset();
session_destroy();
?>
<html>
<title>Furious Falcons</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#ffc200">
<meta name="msapplication-TileColor" content="#181818">
<meta name="theme-color" content="#ffffff">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/ae92485cd8.js"></script>
<body class="w3-black">
<!-- Icon Bar (Sidebar - hidden on small screens) -->
<nav class="w3-sidebar w3-bar-block w3-small w3-hide-small w3-center" style="overflow: hidden;">
<!-- Avatar image in top left corner -->
<img src="/images/FalconsLogoOnly.png" style="width:100%">
<a href="#" data-scroll="homeSection" class="w3-bar-item w3-button w3-padding-large w3-black navlink">
<i class="fa fa-home w3-xxlarge"></i>
<p>HOME</p>
</a>
<a href="#" data-scroll="aboutSection" class="w3-bar-item w3-button w3-padding-large w3-hover-black navlink">
<i class="fa fa-user w3-xxlarge"></i>
<p>ABOUT</p>
</a>
<a href="#" data-scroll="photosSection" class="w3-bar-item w3-button w3-padding-large w3-hover-black navlink">
<i class="far fa-images w3-xxlarge"></i>
<p>PHOTOS</p>
</a>
<a href="#" data-scroll="contactSection" class="w3-bar-item w3-button w3-padding-large w3-hover-black navlink">
<i class="fa fa-envelope w3-xxlarge"></i>
<p>CONTACT</p>
</a>
</nav>
<!-- Navbar on small screens (Hidden on medium and large screens) -->
<div class="w3-top w3-hide-large w3-hide-medium" id="myNavbar">
<div class="w3-bar w3-black w3-hover-opacity-off w3-center w3-small">
<a href="#" data-scroll="homeSection" class="w3-bar-item w3-button navlink" style="width:20% !important"><i class="fa fa-home w3-xlarge"></i><br />HOME</a>
<a href="#" data-scroll="aboutSection" class="w3-bar-item w3-button navlink" style="width:20% !important"><i class="fa fa-user w3-xlarge"></i><br />ABOUT</a>
<a href="#" data-scroll="photosSection" class="w3-bar-item w3-button navlink" style="width:20% !important"><i class="far fa-images w3-xlarge"></i></i><br />PHOTOS</a>
<a href="#" data-scroll="contactSection" class="w3-bar-item w3-button navlink" style="width:20% !important"><i class="fa fa-envelope w3-xlarge"></i><br />CONTACT</a>
<a href="/dashboard/index.php" class="w3-bar-item w3-button navlink" style="width:20% !important"><i class="fa fa-lock w3-xlarge"></i><br />LOGIN</a>
</div>
</div>
<!-- Page Content -->
<div class="w3-padding-large" id="wrapper">
<!-- Login Button -->
<a href="/dashboard/index.php">
<div id="SignIn" class="coolButton" style=" position: absolute; top: 25px; right: 25px; left: auto; width: 150px; height: 55px;">
<p style="margin-top: 12px; text-align: center; vertical-align: middle;"><b style="color: white; margin: 0; font-size: 18px;">LOGIN</b></p>
</div>
</a>
<!-- Sponsors -->
<div id="Sponsors">
<ul>
<li class="forDesktop"><img src="images/Sponsors/Flowserv_logo.png"></li>
<li class="forDesktop"><img src="images/Sponsors/genehaas_logo.png"></li>
<li class="forDesktop"><img src="images/Sponsors/STI-Manufacturing-Logo.png"></li>
<li class="forDesktop"><img src="images/Sponsors/twc_logo.png"></li>
<li class="forDesktop"><img src="images/Sponsors/PCT_logo.png"></li>
<li class="forDesktop"><img src="images/Sponsors/Sponsor_Gtech.png"></li>
<!-- <li class="forDesktop"><img src="images/Sponsors/Sponsor_ChildhoodCenter.png"></li> -->
<!-- <li class="forDesktop"><img src="images/Sponsors/Sponsor_GitHub.png"></li> -->
<!-- <li class="forDesktop"><img src="images/Sponsors/Sponsor_Hampco.png"></li> -->
<!-- <li class="forDesktop"><img src="images/Sponsors/Sponsor_SnapOn.png"></li> -->
<!-- <li class="forDesktop"><img src="images/Sponsors/Sponsor_SolidWorks.png"></li> -->
<!-- <li class="forDesktop"><img src="images/Sponsors/Sponsor_WebCentral.png"></li> -->
<li class="forMobile"><img src="images/Sponsors/Flowserv_logo.png"></li>
<li class="forMobile"><img src="images/Sponsors/genehaas_logo.png"></li>
<li class="forMobile"><img src="images/Sponsors/STI-Manufacturing-Logo.png"></li>
<li class="forMobile"><img src="images/Sponsors/twc_logo.png"></li>
<li class="forMobile"><img src="images/Sponsors/PCT_logo.png"></li>
<li class="forMobile"><img src="images/Sponsors/Sponsor_Gtech.png"></li>
<!-- <li class="forMobile"><img src="images/Sponsors/Sponsor_GitHub.png"></li> -->
<!-- <li class="forMobile"><img src="images/Sponsors/Sponsor_ChildhoodCenter.png"></li> -->
</ul>
</div>
<div class="w3-content" id="MessageBanner" style="display: none;">
<div id="BannerCloseButton" onclick="closeBanner()">
<i class="fa fa-window-close"></i>
</div>
<a href="/camp.php" style="text-decoration: none;">
<div style="margin-right: 30px;">
<h3 class="w3-padding-16">Looking for our Summer Camp? Click here for more information!</h3>
</div>
</a>
</div>
<!-- Header/Home -->
<section class="scrollSection" id="homeSetion" data-anchor="homeSection">
<header class="w3-container w3-padding-32 w3-center w3-black" id="home">
<img src="/images/FalconsLogo.png" alt="boy" class="w3-image" width="800">
<h2><b>Foster High School Robotics (TEST)</b></h2>
<h2><b>FRC Team #4328</b></h2>
</header>
</section>
<!-- About Section -->
<section class="scrollSection" id="aboutSection" data-anchor="aboutSection">
<div class="w3-content w3-justify w3-text-grey w3-padding-64" id="about">
<h2 class="w3-text-light-grey">Our Team</h2>
<hr style="width:200px" class="w3-opacity">
<p>As a FIRST Robotics Team, it is our mission to ensure that our members will walk away from this organization with not only the benefits of a good experience but also with applicable skills that they may use later in life to further their desired career path. We address the majority of the careers and opportunities that are found in the STEM (Science Technology Engineering & Mathematics) fields. More specifically, we endorse majors such as Mechanical Engineering, Computer Science, Electrical Engineering, Fluid-Power Engineering and even Control Engineering. As much as we want to guide and educate our members on these valuable skills, we must also strive for an experience that is both memorable and fulfilling. Which is why we accept the roles both of an educational organization, but also an enjoyable club.</p>
<!-- <a href="/mentors.php" style="text-decoration: none;">
<div class="coolButton">
<p style="margin-top: 18px; text-align: center; vertical-align: middle;"><b style="color: white; margin: 0; font-size: 18px;">The People Who Lead Us</b></p>
</div>
</a> -->
<h3 class="w3-padding-16 w3-text-light-grey">The Skills We Teach</h3>
<h5 class="w3-wide" style="font-weight: bold;">Mechanical Engineering</h5>
<hr style="width:200px" class="w3-opacity">
<p>Members of our mechanical team are taught to comprehend and utilize the basic principles of physics, mathematics, and problem-solving skills in the construction of our robot each year. This team is responsible for the primary assembly, maintenance and overall functionality of the robot. Most of the time, these members are continuously researching, redesigning and implementing potential solutions to overcome the current task at hand. This is all in hopes to innovate the overall building experience.</p>
<h5 class="w3-wide" style="font-weight: bold;">Electrical Engineering</h5>
<hr style="width:200px" class="w3-opacity">
<p> The electrical team holds a crucial role in our team and on our robot. In-depth knowledge of the RoboRIO and other electrical components is used. This team holds the responsibility of wiring the robot and all its components. While this is the only task for the electrical group, it requires a fair amount of organization to keep cables and wires out of the way of the moving parts of the robot. Much like the other departments of robotics, the members of the electrical team are taught the skills necessary to be successful both in their department and in their future, wherever it may take them.</p>
<h5 class="w3-wide" style="font-weight: bold;">Computer Science</h5>
<hr style="width:200px" class="w3-opacity">
<p>Our organization is dependent on our programming team. These individuals are tasked with learning the Java programming language, implementing the language in the Visual Studio Code IDE and exporting it to a RoboRIO controller, as well as familiarizing themselves with the basics of GRIP Vision and Image Recognition. As complex as these tasks may appear, our adept student-based teaching program allows new members, that might be oblivious to these components, to ease into the programming realm. Students are able to learn the fundamentals of the technological aspect of robotics efficiently, effectively, and without the worry of falling behind their fellow members.</p>
<h5 class="w3-wide" style="font-weight: bold;">Fluid-Power Engineering</h5>
<hr style="width:200px" class="w3-opacity">
<p>Although a relatively new department to our organization, we believe that fluid power, or pneumatics, is a resource that should be further explored by our new generation of members. In the past, fluid-powered components have been overlooked and seen as a hinder our organization’s progression. However, during our previous season, pneumatics played a crucial role in our team’s success, increasing our desire to explore this technology further. In the future, members of the fluid-power team will work towards learning the fundamentals of pneumatic components such as pressure regulators, electrical-controlled solenoids, compressors, and air storage tanks. They will also incorporate these elements on the current robot build using polyurethane pneumatic tubing.</p>
<h5 class="w3-wide" style="font-weight: bold;">Control Engineering</h5>
<hr style="width:200px" class="w3-opacity">
<p>This division of our club does not hold too many responsibilities as it mostly consists of driving or manipulating our robot on the field of play. However, the tasks that are assigned do require a certain dedication to the club. Depending on the current status of the robot, drivers may receive little to no practice but are still expected to have a basic understanding of the primary functions of the robot and how they operate. This is so that no matter what might happen, our drivers are always prepared for whatever problems are thrown our way during the build season.</p>
<h3 class="w3-padding-16 w3-text-light-grey w3-center">More Information on Us</h3>
<div class="w3-content w3-row-padding" style="text-align: center;">
<div class="w3-half w3-padding-16">
<a href="/booster-club/info.php" style="text-decoration: none;">
<div class="coolButton">
<p style="margin-top: 18px; text-align: center; vertical-align: middle;"><b style="color: white; margin: 0; font-size: 18px;">Our Booster Club</b></p>
</div>
</a>
</div>
<div class="w3-half w3-padding-16">
<a href="/sponsors.php" style="text-decoration: none;">
<div class="coolButton">
<p style="margin-top: 18px; text-align: center; vertical-align: middle;"><b style="color: white; margin: 0; font-size: 18px;">Our Sponsorships</b></p>
</div>
</a>
</div>
<div class="w3-half w3-padding-16 buttonCenter">
<a href="https://drive.google.com/file/d/1ZFJea1E3gfRuNDjq4E5COidX4KM1NRDG/view?usp=sharing" style="text-decoration: none;">
<div class="coolButton">
<p style="margin-top: 18px; text-align: center; vertical-align: middle;"><b style="color: white; margin: 0; font-size: 18px;">Our Club Bylaws</b></p>
</div>
</a>
</div>
</div>
</div>
<div class="w3-row w3-content w3-center w3-padding-16 w3-section w3-light-grey">
<div class="w3-quarter w3-section">
<span class="w3-xlarge">20+</span><br>
Robots Designed
</div>
<div class="w3-quarter w3-section">
<span class="w3-xlarge">40+</span><br>
Team Members
</div>
<div class="w3-quarter w3-section">
<span class="w3-xlarge">10+</span><br>
Proud Sponsors
</div>
<div class="w3-quarter w3-section">
<span class="w3-xlarge">100+</span><br>
Future Competitions Won
</div>
</div>
<br />
<!-- Portfolio Section -->
<section class="scrollSection" id="photosSection" data-anchor="photosSection">
<div class="w3-padding-64 w3-content" id="photos">
<h2 class="w3-text-light-grey">Our Gallery</h2>
<hr style="width:200px" class="w3-opacity">
<!-- Container for the image gallery -->
<div class="container">
<!-- Full-width images with number text -->
<div class="mySlides">
<div class="numbertext">1 / 10</div>
<img src="images/image1.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">2 / 10</div>
<img src="images/image2.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">3 / 10</div>
<img src="images/image3.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">4 / 10</div>
<img src="images/image4.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">5 / 10</div>
<img src="images/image11.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">6 / 10</div>
<img src="images/image6.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">7 / 10</div>
<img src="images/image7.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">8 / 10</div>
<img src="images/image8.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">9 / 10</div>
<img src="images/image12.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">10 / 10</div>
<img src="images/image10.jpg" style="width:100%">
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<!-- Image text -->
<div class="caption-container">
<p id="caption"></p>
</div>
<!-- Thumbnail images -->
<div class="row">
<div class="column">
<img class="demo cursor" src="images/image1.jpg" style="width:100%" onclick="currentSlide(1)" alt="Cruising back to the pits">
</div>
<div class="column">
<img class="demo cursor" src="images/image2.jpg" style="width:100%" onclick="currentSlide(2)" alt="The robots starting position in the match">
</div>
<div class="column">
<img class="demo cursor" src="images/image3.jpg" style="width:100%" onclick="currentSlide(3)" alt="Human Ops dropping cargo">
</div>
<div class="column">
<img class="demo cursor" src="images/image4.jpg" style="width:100%" onclick="currentSlide(4)" alt="2018-19 President Marixi Malek">
</div>
<div class="column">
<img class="demo cursor" src="images/image11.jpg" style="width:100%" onclick="currentSlide(5)" alt="Our Team & Alumni">
</div>
<div class="column">
<img class="demo cursor" src="images/image6.jpg" style="width:100%" onclick="currentSlide(6)" alt="2018 members Marixi, Michael, Muna, and Carson in queue for a match">
</div>
<div class="column">
<img class="demo cursor" src="images/image7.jpg" style="width:100%" onclick="currentSlide(7)" alt="Planning strategies with our alliance">
</div>
<div class="column">
<img class="demo cursor" src="images/image8.jpg" style="width:100%" onclick="currentSlide(8)" alt="Showing our Furious Falcons spirit">
</div>
<div class="column">
<img class="demo cursor" src="images/image12.jpg" style="width:100%" onclick="currentSlide(9)" alt="Our 2019 Summer Camp Crew">
</div>
<div class="column">
<img class="demo cursor" src="images/image10.jpg" style="width:100%" onclick="currentSlide(10)" alt="Alliance group photo with the Iron Tigers and the AngelBots">
</div>
</div>
<div class="w3-content" style="height: 100%; padding-bottom: 50px; overflow: hidden;">
<h2 class="w3-text-light-grey w3-padding-64">El Paso District Competition Reflection</h2>
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/K8pFP2B_NPE" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<!-- Contact Section -->
<section class="scrollSection" id="contactSection" data-anchor="contactSection">
<div class="w3-padding-64 w3-content w3-text-grey" id="contact">
<h2 class="w3-text-light-grey">Contact Us</h2>
<hr style="width:200px" class="w3-opacity">
<div class="w3-section">
<p><i class="fa fa-map-marker fa-fw w3-text-white w3-xxlarge w3-margin-right"></i> Richmond, TX</p>
<p><i class="fa fa-envelope fa-fw w3-text-white w3-xxlarge w3-margin-right"> </i> Email: <a href="mailto:contactus@furiousfalcons.org">contactus@furiousfalcons.org</a></p>
</div><br>
<p style="display:none;" id="contactSuccessText">Thanks for getting in touch! We'll get back to you as soon as we can!</p>
<div id="contactForm">
<p>Lets get in touch. Send us a message:</p>
<form action="/contactus.php" method="post">
<p><input class="w3-input w3-padding-16" type="text" placeholder="Name" required name="Name"></p>
<p><input class="w3-input w3-padding-16" type="text" placeholder="Email" required name="Email"></p>
<p><input class="w3-input w3-padding-16" type="text" placeholder="Subject" required name="Subject"></p>
<p style="height: 200px;"><textarea class="w3-input" type="paragraph" placeholder="Message" required name="Message" style="height: 100%;"></textarea></p>
<button class="w3-button w3-light-grey w3-padding-large" type="submit">
<i class="fa fa-paper-plane"></i> SEND MESSAGE
</button>
</p>
</form>
</div>
<!-- End Contact Section -->
</div>
</section>
<!-- Footer -->
<footer class="w3-content w3-padding-64 w3-text-grey w3-xlarge">
<h3>Useful Links</h3>
<p style="font-size: 16px;"><a href="https://www.firstinspires.org/robotics/frc">Visit the FIRST Robotics Website</a></p>
<p style="font-size: 16px;"><a href="/camp/info.php">Look at our Summer Camp</a></p>
<a style="padding: 5px;" href="https://www.reddit.com/r/FuriousFalcons"><i class="fab fa-reddit w3-hover-opacity"></i></a>
<a style="padding: 5px;" href="https://fb.me/furiousfalcons4328"><i class="fab fa-facebook"></i></a>
<a style="padding: 5px;" href="https://www.youtube.com/channel/UCKGAG7kHLdjRE5BgjCmybWg"><i class="fab fa-youtube w3-hover-opacity"></i></a>
<a style="padding: 5px;" href="https://www.instagram.com/foster_robotics/"><i class="fab fa-instagram"></i></a>
<a style="padding: 5px;" href="https://www.snapchat.com/add/fosterrobotics"><i class="fab fa-snapchat w3-hover-opacity"></i></a>
<!--<a style="padding: 5px;" href="https://www.pinterest.com/fosterrobotics/"><i class="fa fa-pinterest-p w3-hover-opacity"></i></a>-->
<a style="padding: 5px;" href="https://twitter.com/FosterRobotics"><i class="fab fa-twitter w3-hover-opacity"></i></a>
<!--<a style="padding: 5px;" href="https://www.linkedin.com/in/furious-falcons-936303187/"><i class="fa fa-linkedin w3-hover-opacity"></i></a>-->
<a style="padding: 5px;" href="https://discord.gg/r7Zrs4A"><i class="fab fa-discord"></i></a>
<!-- End footer -->
</footer>
<!-- END PAGE CONTENT -->
</div>
<script src="SmoothUI.js" type="text/javascript"></script>
<script>
if (window.location.search == "?contactSuccess") {
$('#contactForm').css('display', 'none');
$('#contactSuccessText').css('display', 'block');
goToContactForm();
} else if (window.location.search == "?contact") {
setTimeout(function() {
goToContactForm();
}, 500);
}
function goToContactForm() {
var scrollPoint = $('section[data-anchor="contactSection"]').offset().top + 20;
$('body,html').animate({
scrollTop: scrollPoint
}, 500);
}
$('.navlink').on('click', function() {
var scrollAnchor = $(this).attr('data-scroll');
var scrollPoint = $('section[data-anchor="' + scrollAnchor + '"]').offset().top + 20;
$('body,html').animate({
scrollTop: scrollPoint
}, 500);
return false;
})
$(window).scroll(function() {
var windscroll = $(window).scrollTop();
if (windscroll >= 100) {
$('.scrollSection').each(function(i) {
if ($(this).position().top <= windscroll + 20) {
$('nav a.w3-black').addClass('w3-hover-black');
$('nav a.w3-black').removeClass('w3-black');
$('nav a').eq(i).addClass('w3-black');
$('nav a').eq(i).removeClass('w3-hover-black');
}
});
} else {
$('nav a.w3-black').addClass('w3-hover-black')
$('nav a.w3-black').removeClass('w3-black');
$('nav a:first').addClass('w3-black');
$('nav a:first').removeClass('w3-hover-black');
}
}).scroll();
</script>
<script type="text/javascript">
function closeBanner() {
document.getElementById("MessageBanner").style.display = "none";
}
var slideIndex = 1;
showSlides(slideIndex);
// Next/previous controls
function plusSlides(n) {
showSlides(slideIndex += n);
}
// Thumbnail image controls
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("demo");
var captionText = document.getElementById("caption");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
captionText.innerHTML = dots[slideIndex-1].alt;
}
console.log("BOT STUFF");
</script>
</body>
</html>