mylloon.fr/static/js/index.js
Mylloon 01c106fabb
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending
update index
2023-10-13 20:59:08 +02:00

14 lines
361 B
JavaScript

window.addEventListener("load", () => {
const tags = [
"Comment ça marche un PC 😵‍💫",
"Idiot certifié",
"undefined",
"/api/v1/love",
"Étudiant qui va rater son master",
"Peak D2 sur Valo 🤡",
"1312",
];
document.getElementById("subname").textContent =
tags[Math.round(Math.random() * (tags.length - 1))];
});