This commit is contained in:
parent
e052b4a516
commit
10fceecf30
|
@ -16,8 +16,8 @@
|
|||
<br>
|
||||
<div id='shodiv'></div>
|
||||
<ul>
|
||||
<li><p>Children who touches my <a id='pep'>-----</a> - Why? Just stop. JUST STOP! JUST DFIGHREGHJDRGHIGHDIBG</p></li>
|
||||
<li><p>Munint - Gimme my money back you <a id='fek'>----</a>er</p></li>
|
||||
<li><p>Children who touches my <a class='white' id='pep'>-----</a> - Why? Just stop. JUST STOP! JUST DFIGHREGHJDRGHIGHDIBG</p></li>
|
||||
<li><p>Munint - Gimme my money back you <a id='fek' class='white'>----</a>er</p></li>
|
||||
</ul>
|
||||
<script src='toc.js'></script>
|
||||
<p aria-hidden=true class='h' id='me'>0</p>
|
||||
|
|
|
@ -30,7 +30,7 @@ body.kazoo {
|
|||
p, a, h1, h2, li {
|
||||
font-family: 'Rounded Elegance', sans-serif;
|
||||
}
|
||||
p, p.white_fix, i.white, li {
|
||||
p, p.white_fix, i.white, li, a.white {
|
||||
color: white;
|
||||
}
|
||||
a, h1, p.green, i, h2 {
|
||||
|
|
|
@ -19,39 +19,49 @@
|
|||
<a class='quoting'>"What is going on right now?"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"The blank entity has exhibited signs of awareness. - 02/05/19, The Ape"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"This is quote town"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"This <p id='ret'>------</p>ed guy is the one who started it :----------D"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"This <a class='white' id='ret'>------</a>ed guy is the one who started it :----------D"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"Touhou Garbage"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"Were you the ball?"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"Ok, let's listen to the best song in the entire world."</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"Remember the Commodore 64 please."</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"I'M A RAT!"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"I'm not a Ni ga <!-- the n word basically -->"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"I'm a <p id='wus'>----</p>"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"Kanji is basically... complex <p id='shi'>----</p>"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"No <p id='shi'>----</p>"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"I'm a <a class='white' id='wus'>----</a>"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"Kanji is basically... complex <a class='white' id='shi'>----</a>"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting'>"No <a class='white' id='shi'>----</a>"</a><p class='h' aria-hidden='true'></p>
|
||||
<a class='quoting' href='https://youtu.be/dAqC07wsbOk?t=274'>"Hiss and scratch"</a><p class='h' aria-hidden='true'></p>
|
||||
<script src='toc.js'></script>
|
||||
<p aria-hidden=true class='h' id='hh'>0</p>
|
||||
<script>
|
||||
var p = "<p id='sho' onclick='shows()'>Show swear words (Yes, this is clickable)</p>";
|
||||
var p = "<p id='sho' onclick='s()'>Show swear words (Yes, this is clickable)</p>";
|
||||
var inn = document.getElementById("shodiv");
|
||||
inn.innerHTML = p;
|
||||
var rett = document.getElementById("ret");
|
||||
var wuss = document.getElementById("wus");
|
||||
var shii = document.getElementById("shi");
|
||||
var shoo = document.getElementById("sho");
|
||||
var ffff = document.getElementById("hh");
|
||||
function shows() {
|
||||
rett.innerHTML = "retard";
|
||||
wuss.innerHTML = "wuss";
|
||||
shii.innerHTML = "shit";
|
||||
shoo.innerHTML = "Hide swear words";
|
||||
shoo.onclick = "hides()";
|
||||
}
|
||||
function hides() {
|
||||
rett.innerHTML = "------";
|
||||
wuss.innerHTML = "----";
|
||||
shii.innerHTML = "----";
|
||||
shoo.innerHTML = "Show swear words";
|
||||
shoo.onclick = "shows()";
|
||||
}
|
||||
function s() {
|
||||
if (ffff.innerHTML == "0") {
|
||||
shows()
|
||||
ffff.innerHTML = "1";
|
||||
} else {
|
||||
hides()
|
||||
ffff.innerHTML = "0";
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue