Skip to content

Commit

Permalink
Update 404.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Rudxain authored May 2, 2024
1 parent 8789c0e commit 4a5bdca
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,27 @@
<style>html{font-family:monospace}</style>
</head>
<body>
<header><h1>Title not found πŸ’€</h1></header>
<header><h1 id=t>Title not found πŸ’€</h1></header>
<section>
<p>The file you requested doesn't exist right now.</p>
<p>Remember URLs are case-sensitive (except domain-names)</p>
<p>❔️ The file you requested doesn't exist right now.</p>
<p>ℹ️ Remember, URLs are case-sensitive (except domain-names)</p>
</section>
<footer>
<a href="https://githubstatus.com">GH Status</a>
</footer>
<script>
'use strict'
const msgs = [
const m = [
"It seems you're out of bounds...",
"Can't have pages in Ohio πŸ’€",
"You just invoked Undefined Behavior!!!",
"😨 You just invoked Undefined Behavior!!! 😱",
"Was that a typo?",
"bruh"
"bro can't type πŸ’€",
"Are you trying to no-clip into the WebRooms?",
'"Please enable JS to-" [gets slapped]'
]
const title = document.querySelector("h1")
title.innerText = msgs[Math.random() * msgs.length >>>0]
document.getElementById("t")
.innerText = m[Math.random() * m.length |0]
</script>
</body>
</html>

0 comments on commit 4a5bdca

Please sign in to comment.