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 pathFAQ.html
More file actions
70 lines (48 loc) · 2.36 KB
/
Copy pathFAQ.html
File metadata and controls
70 lines (48 loc) · 2.36 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style.css">
<title>FAQ</title>
</head>
<body>
<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="navDisabled" disabled>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> If you have any questions, these might answer them:</h1>
<h3> Q: Am I allowed to fork this website and make changes to it? </h3>
<h3> A: No, this is a project that I want to continue solo. If there are any mistakes on the website, please <a href="https://github.com/CGray1234/cgray1234.github.io/issues/new">submit an issue</a></h3>
<hr id="thinn-line_redtoblue">
<h3> Q: Why are you making a modding guide? There are plenty out there. </h3>
<h3> A: No particular reason other than I want to make a modding guide of my own. My guide will also go a bit more in-depth with QuestUI than BSMG's, and has all of the code commonly used with making mods (custom types, questui, etc.)</h3>
<hr id="thinn-line_redtoblue">
<h3> Q: When will this website be done?</h3>
<h3> A: 🤷♂️</h3>
<hr id="thinn-line_redtoblue">
<h1> Still can't find what you're looking for? <a href="https://github.com/CGray1234/cgray1234.github.io/issues/new">Submit an issue.</a></h1>
</body>