-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFRC.html
More file actions
147 lines (99 loc) · 4.53 KB
/
FRC.html
File metadata and controls
147 lines (99 loc) · 4.53 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel = "stylesheet" type = "text/css" href = "countdown.css">
<script src = "finalp3.js">
document.title = "Bubble With Us.com";
</script>
</head>
<body>
<span style="color: white; padding-left: 50px; font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
<div id="main">
<h1> What is FRC </h1>
<center>
<h2>
<br>
FRC is a competive robotics competition where students build a robot during build season and then use the robot to complete challenges of that years competition.
</h2>
</center>
<h1>
What positions are avaliable in FRC teams?
</h1>
<p>
CODING:
</p>
<h2> Coders are in charge of programming the robot with movement, sensors, and buttons so that the robot can function propelry. <br></h2>
<p>
BUILD:
</p><h2> Minutes of planning save hours of fixing hardware. Teams need to think about what they will build, how, and why. <br></h2>
<p>
BUSINESS:
</p><h2>The Business team is in charge of keeping track of the team's funds. They look for sponsorships from companies while making sure the team is not overspending. <br></h2>
<p>SCOUTING/STRATEGY:
</p><h2>Scouters/Strategists will talk to other teams during competition to find out more about their robot. They work closely with the drive team. <br></h2>
<p>
DRIVE:
</p><h2>The Drive team is in charge of operating the robot during the game. It consists of a drive team captain, two drivers, and a human player.<br></h2>
<h1> 2019 Game play </h1>
</h2>
<div class="column"> <iframe width="700px" height="600px" src="https://www.youtube.com/embed/Mew6G_og-PI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="column"> <iframe width="700px" height="600px" src="https://www.youtube.com/embed/SI-lGDkumDA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div id="mySidenav" class="sidenav">
<ul>
<li><a></a></li>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<li><a href="file:///C:/Users/Prudential/Desktop/FIRST/desdropmenu.html">Home</a></li>
<li><a href="file:///C:/Users/Prudential/Desktop/FIRST/aboutfirst.html">About FIRST</a></li>
<li><a href="file:///C:/Users/Prudential/Desktop/FIRST/FTC.html">FTC</a></li>
<li><a href="file:///C:/Users/Prudential/Desktop/FIRST/FRC.html">FRC</a></li>
<li><a href="file:///C:/Users/Prudential/Desktop/FIRST/coding.html">Coding</a></li>
<li><a href="file:///C:/Users/Prudential/Desktop/FIRST/hardwear.html">Hardware</a></li>
<li><a href="https://www.reddit.com/r/firstrobotics/">Forum</a></li>
<li><a href="https://docs.google.com/spreadsheets/d/1WlWj_zOJyUR7AiFoY_vinTzRoDLSmw3gSUKS8oBGj18/edit#gid=1076842680">Scouting Templetes</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLScg3RWPMMKuOmrMry4tmpb5iGnurarxgmNhE87naX0Adciyew/viewform">Help</a></li>
<li><a href="file:///C:/Users/Prudential/Desktop/FIRST/aboutus.html">About Us</a></li>
</ul>
</div>
<h1>Robots</h1>
<center>
<div class="column">
<img src="he.jpg"style="width:700px; height:600px;">
</div>
<div class="column">
<img src="ye.jpg" style="width: 700px; height:600px;">
<a href="https://www.team5992.org"style="color:#AFBBF2"><h2>Team 5992 website</h2></a>
</div>
</div>
</center>
</body>
</html>
*<h5>
<center><script>
// Set the date we're counting down to
var countDownDate = new Date("Jan 4, 2020 10:37:25").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Display the result in the element with id="demo"
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is finished, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
</h5>