-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOurMatches.html
More file actions
97 lines (96 loc) · 3.88 KB
/
OurMatches.html
File metadata and controls
97 lines (96 loc) · 3.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OUR MATCHES</title>
<link rel="icon" type="image/x-icon" href="images/favIcon.png">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="./index.html">
<img src="./images/CORElogoStandard.png" alt="Logo" class="logo-img" id="logo-standard">
<img src="./images/CORELogoBlack.png" alt="Hover Logo" class="logo-img-hover" id="logo-hover">
</a>
</div>
<ul class="nav-links">
<div class="nav-left">
<li><a href="./index.html">Home</a></li>
<li><a href="./OurMatches.html">Our Matches</a></li>
<li class="dropdown">
<a class="dropbtn">Review</a>
<div class="dropdown-content">
<a href="./GenTeams.html">Review teams</a>
<a href="./GenMatches.html">Review matches</a>
<a href="./Leader.html">Review Leaderboard</a>
</div>
</li>
<li class="dropdown">
<a class="dropbtn">Tools</a>
<div class="dropdown-content">
<a href="./TeamVS.html">Team VS</a>
<a href="./Tools/GameGen.html">Double Elims predictor</a>
<a href="./Tools/PickList.html" >Pick List Helper</a>
</div>
</li>
</div>
<li class="dropdown">
<a class="dropbtn">Pratice Data Review</a>
<div class="dropdown-content">
<a href="./PraticeTemplates/GenTeams.html">Review Teams Pratice Data</a>
<a href="./PraticeTemplates/GenMatches.html" >Review Matches Pratice data</a>
<a href="./PraticeTemplates/Leader.html" >Review Pratice Leaderboard</a>
</div>
</li>
<div class="nav-right">
<li class="dropdown">
<a href="./ArchivedData/ArcData.html" class="dropbtn">Download Our Data</a>
<div class="dropdown-content">
<a href="./ArchivedData/ArcData.html">ReefScape.zip (Not Out yet)</a>
<a href="./ArchivedData/ArcData.html">DemoData.zip</a>
</div>
</li>
<li class="dropdown">
<a class="dropbtn">Extras</a>
<div class="dropdown-content">
<a href="./">Documentation</a>
</div>
</li>
<li class="dropdown">
<a href="./index.html" class="dropbtn">year: ReefScape</a>
<div class="dropdown-content">
<a href="./">ReefScape</a>
<a href="./" >Crescendo</a>
<a href="./">Charged UP</a>
</div>
</li>
</div>
</ul>
</nav>
<div class="backbox">
<h1 >Our Matches</h1>
<br>
<div class="flexBox">
<p>Event</p>
<label class="switch">
<input onclick="UpdateEmbed()" type="checkbox" id="switch1" checked>
<span class="slider round"></span>
</label>
<p>CORE2062</p>
</div>
<div class="flexBox">
<p>Blue Alliance</p>
<label class="switch">
<input onclick="UpdateEmbed()" type="checkbox" id="switch2" checked>
<span class="slider round"></span>
</label>
<p>StatBotics</p>
</div>
</div>
<br>
<embed id="embed" src="" width="100%" height="600px" type="text/html">
<script src='js/OMEmbedControll.js'></script>
</body>
</html>