2024-07-21 20:51:31 +07:00
|
|
|
console.log("What are you doing here? ;-;")
|
|
|
|
console.log(
|
|
|
|
"Tips: If you add stright=true to the URL, the font will change to Roboto, easier to read :3",
|
|
|
|
)
|
2025-04-23 23:16:27 +07:00
|
|
|
console.log("Sometimes this world is great, but sometimes it sucks.... :c")
|
|
|
|
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms))
|
|
|
|
sleep(2500).then(() => {
|
|
|
|
console.log(
|
2025-05-11 00:05:16 +07:00
|
|
|
"%c Something went wrong... :c",
|
2025-04-23 23:16:27 +07:00
|
|
|
"color: #FF69B4; font-size: 20px; font-weight: bold;",
|
|
|
|
)
|
|
|
|
console.log(
|
|
|
|
"%cAlso check out my gallery too! :3 (/gallery)",
|
|
|
|
"color: #FF69B4; font-size: 20px; font-weight: bold;",
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|