This repository was archived by the owner on Sep 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (61 loc) · 2.44 KB
/
Copy pathindex.html
File metadata and controls
85 lines (61 loc) · 2.44 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style.css">
<title>Home</title>
</head>
<body>
<!--<div style="background-color: #2a57c9; text-align: center; font-size:30px; padding:5px; color:white">Sample Announcement</div>
<div style="background-color: #2a57c9; text-align: center; font-size:20px; padding:5px; color:white">
<p>Sample Announcement</p>
</div>-->
<div style="height: 65px; background-color: dodgerblue; display: flex; align-items: center;">
<a href="https://cgray1234.github.io/">
<button id="nav">Home</button>
</a>
<a href="https://cgray1234.github.io/bs-stuff/mods">
<button id="nav">My Mods</button>
</a>
<a href="https://cgray1234.github.io/bs-stuff/making-quest-mods/getting-started">
<button id="nav">Making Mods</button>
</a>
<a href="https://cgray1234.github.io/bs-models/models">
<button id="nav">My Models</button>
</a>
<a href="https://cgray1234.github.io/FAQ">
<button id="nav">FAQ</button>
</a>
<script>
// Get the button and page title elements by their IDs
var button = document.getElementById("nav");
var pageTitle = document.title;
// Compare the button text to the page title and underline if they match
if (button.textContent === pageTitle) {
button.style.textDecoration = "underline";
button.disabled = true;
button.id = "navDisabled";
}
</script>
</div>
<div id="bg">
<div style="margin-left: 5px;">
<h1>Welcome</h1>
<span>This site is currently unfinished and is in active development. You can check out the source code by clicking <a href="https://github.com/CGray1234/cgray1234.github.io/">here</a></span>
<br>
<br>
<hr id="thinn-line_redtoblue">
<h2>Announcements page (archived as of 10/12/2023)</h2>
<a href="./bs-stuff/announcements">Click Here!</a>
<br>
<br>
<hr id="thinn-line_redtoblue">
<h2> Beat Saber Stuff: </h2>
<a href="./bs-stuff/mods">My Beat Saber mods</a>
<br>
<a href="./bs-stuff/making-quest-mods/getting-started">Mod development guide</a>
<br>
<a href="./bs-models/models">My Beat Saber models</a>
<br>
<br>
<hr id="thinn-line_redtoblue">
<h2>Questions? Refer to the <a href="./FAQ">FAQ</a>
</body>