-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 1.05 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>
<body style="background-color:violet">
<head>
<title>Home Page</title>
<style>
.center {
margin: auto;
width: fit-content
}
</style>
</head>
<div id="Distribution Buttons" class="center">
<button id="resourcesButton" class="float-left submit-button" >Go to Resources</button>
<button id="rookieButton" class="float-left submit-button" >Go to Rookie Training</button>
<button id="docsButton" class="float-left submit-button" >Go to Docs</button>
</div>
<script type="text/javascript">
document.getElementById("resourcesButton").onclick = function () {
location.href = "resources.html";
};
</script>
<script type="text/javascript">
document.getElementById("rookieButton").onclick = function () {
location.href = "https://github.com/Talon540Programming/Rookie-Training";
};
</script>
<script type="text/javascript">
document.getElementById("docsButton").onclick = function () {
location.href = "docs.html";
};
</script>
</body>
</html>