-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 2 KB
/
index.html
File metadata and controls
69 lines (62 loc) · 2 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
<!--
The GNU General Public License v3.0 (GNU GPLv3)
scibowlbot, a Discord Bot that helps simulate a Science Bowl round.
Copyright (C) 2021-Present DevNotHackerCorporations
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
For any questions, please contant DevNotHackerCorporations by their email at <devnothackercorporations@gmail.com>
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>scibowlbot</title>
<link
rel="icon"
href="/Gamebot/gamebot.png"
/>
<link rel="icon" href="/atom.png">
<link rel="stylesheet" href="website/css/style.css">
</head>
<body>
<header>
<b
><span id="gtitle"
><img
src="/atom.png"
id="gbotpng"
/>Scibowlbot
</span></b
>
<h3>
<i><b>The best way to simulate a Science Bowl Round on Discord.</b></i>
</h3>
</header>
<hr />
<main>
<blockquote>"How did you get good at science?" - Someone<br>"Scibowlbot" - Matthew H.</blockquote>
</main>
<span id="copyright"
>Website made by <span style="color:rgb(202, 202, 202)" id="ac404">Actiniumn404</span>. Please give credit if you want to use
this.</span
>
<script defer>
document.querySelectorAll("h2, h3").forEach((e) => {
if (e.hasAttribute("id")) {
e.innerHTML += `<a style="margin-left:5px;color:#fca21c;" href='${
window.location.pathname + "#" + e.id
}'>¶</a>`;
}
});
</script>
</body>
</html>