secret
This commit is contained in:
parent
7d8c119308
commit
f153698e36
1 changed files with 13 additions and 3 deletions
16
index.html
16
index.html
|
@ -60,6 +60,11 @@
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
#textarea {
|
||||
width: 422px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
a {
|
||||
color: lightgray;
|
||||
}
|
||||
|
@ -88,7 +93,7 @@
|
|||
<li><a href="https://www.minecraft.net/en-us">@javagreaterthancpp</a></li>
|
||||
</ul>
|
||||
|
||||
<div style="width: 422px; margin: auto;">
|
||||
<div id="textarea">
|
||||
<p>
|
||||
Welcome to the wondrous world of <span class="pink">awesome</span>! Prepare yourself for an exhilarating journey through a virtual wonderland filled with boundless fun, thrilling adventures, and endless laughter. At <span class="pink">awesome</span>, we believe in embracing the extraordinary, celebrating the wacky, and tickling your funny bone till it begs for mercy. So fasten your seatbelts, hold onto your socks (because they're about to be knocked off), and get ready to dive headfirst into a whirlwind of pure <span class="pink">awesome</span>ness!
|
||||
</p>
|
||||
|
@ -115,6 +120,8 @@
|
|||
</p>
|
||||
</div>
|
||||
|
||||
<a style="position: absolute; width: 10px; height: 10px; right: 200px; top: 600px; cursor: pointer;" href="javascript:secret()"></a>
|
||||
|
||||
<script>
|
||||
const fps = 30;
|
||||
|
||||
|
@ -130,8 +137,11 @@
|
|||
}
|
||||
|
||||
function bio() {
|
||||
//temp
|
||||
alert("awdog is nonbinary ^w^");
|
||||
document.getElementById("textarea").innerHTML = "awdog is nonbinary ^w^";
|
||||
}
|
||||
|
||||
function secret() {
|
||||
document.getElementById("textarea").innerHTML = "6C6D616F20796F752074686F75676874203E773C";
|
||||
}
|
||||
|
||||
var prevTime = 0;
|
||||
|
|
Reference in a new issue