-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
40 lines (35 loc) · 1.17 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<style>
p {
font-family: Arial, Helvetica, sans-serif;
font-size: xx-large;
}
.center {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 100px;
}
#logo {
width: 100%;
height: 100%;
}
</style>
<link rel="icon" href="favicon.ico" sizes="48x48">
<link rel="icon" href="https://raw.githubusercontent.com/wpilibsuite/branding/main/export/svg/wpilib-icon.svg" sizes="any" type="image/svg+xml">
<link rel="apple-touch-icon" href="https://raw.githubusercontent.com/wpilibsuite/branding/main/export/png/wpilib-icon-256.png"/>
</head>
<body>
<div class="center">
<div style="padding: 50px;" class="center">
<img id=logo src="https://raw.githubusercontent.com/wpilibsuite/branding/main/export/svg/wpilib-generic.svg" alt="wpilib" />
</div>
<p><a href="https://docs.wpilib.org/">FIRST Robotics Competition Control System documentation</a></p>
<p><a href="allwpilib/docs/release/java/">WPILib Java API Docs</a></p>
<p><a href="allwpilib/docs/release/cpp/">WPILib C++ API Docs</a></p>
</div>
</body>
</html>