updated pages to follow the template

This commit is contained in:
Aviv "RustyStriker" Romem 2022-04-23 15:30:28 +03:00
parent e5c6206365
commit a62345a6ca
2 changed files with 114 additions and 30 deletions

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<!-- JS Licese -->
<head>
<!-- JS Licese -->
<script>
/*
@licstart The following is the entire license notice for the
@ -28,21 +28,32 @@
for the JavaScript code in this page.
*/
</script>
<title>Rusty's Awesome Test Site</title>
<!-- Style -->
<title>Rusty Striker's Awesome Website</title>
<!--Style stuff -->
<link rel="stylesheet" type="text/css" href="default_style.css" media="all">
</head>
<body>
<header>
&#128128; &#128128; This is my &lt;header&gt; &#128128; &#128128;
</header>
<h1 style="color: crimson;">
Rusty's Awesome Test Site
</head>
<body>
<header>
<div>
<a href = "https://rustystriker.dev/">
<h1 style="margin-bottom:0px;">Rusty's Wetbsite</h1>
</a>
<p style = "margin-top: 0px;">
A place for wanky stuff, weird JavaScript and warm-ish takes
</p>
<a href = "https://rustystriker.dev/about.html">About</a>
<a href = "https://gitea.rustystriker.dev/RustyStriker/website">Source</a>
<a href = "https://rustystriker.dev/licenses.html">Licenses</a>
</div>
</header>
<h1>
Welcome, to my WEBSITE!
</h1>
<div>
<p>
Welcome to my awesome test site,
Welcome to my awesome website,
I will Attempt to learn html using it,
and you can view my progress here(i guess)...
</p>
@ -128,17 +139,32 @@
<a href="another_page.html">I am really not sure how it works</a>
</p>
</div>
</body>
<footer>
<p>
Copyright © 2022 Aviv "RustyStriker" Romem |
Except where otherwise noted.
<br>
works and publications on this website are licenced under
<a href = "https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>.
<br>
Codes are published under
<a href = "https://www.gnu.org/licenses/agpl-3.0.html">GNU AGPL v3 or later</a>
and JavaScript is also published under
<a href = "https://www.gnu.org/licenses/gpl-3.0.html">GNU GPL v3 or later</a>
| Except where otherwise noted.
</p>
</footer>
</body>
<script>
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
function onCoolButtonClick() {
let bg = document.body.style.getPropertyValue("background-color");
if (bg == "rgb(31, 1, 15)") {
document.body.style.setProperty("background-color", "rgb(1, 2, 47)");
if (bg == "rgb(1, 2, 47)") {
document.body.style.setProperty("background-color", "rgb(5, 0, 11)");
}
else {
document.body.style.setProperty("background-color", "rgb(31, 1, 15)");
document.body.style.setProperty("background-color", "rgb(1, 2, 47)");
}
if (document.getElementById("appearing-div").style.visibility == "hidden") {
document.getElementById("appearing-div").style.visibility = "inherit";
@ -181,6 +207,5 @@
{ duration: 500, iterations: 2 }
)
}
// @license-end
</script>
</html>