diff --git a/2024/call/call.html b/2024/call/call.html index 0c32559..963b61a 100644 --- a/2024/call/call.html +++ b/2024/call/call.html @@ -155,7 +155,7 @@ function dropping(){ var dropdowns = document.querySelectorAll("select"); var random = Math.floor(Math.random() * dropdowns.length); - var dropdown = dropdowns[random] + var dropdown = dropdowns[random]; var random_option = Math.floor(Math.random() * dropdown.options.length); dropdown.selectedIndex = random_option; var color = pickcolor(); @@ -186,6 +186,17 @@ return color; } pickcolor() + + var message = " \n"+ +" _ _ _ _ \n"+ +"| | | | | | |\n"+ +"| |__ ___| | | ___ | |\n"+ +"| '_ \\ / _ \\ | |/ _ \\| |\n"+ +"| | | | __/ | | (_) |_|\n"+ +"|_| |_|\\___|_|_|\\___/(_)\n"+ +"amazing that you opened the inspector to check the code. We hope you will apply \n"+ +"and mention that you have found the codeword 'opisop'! \n"; + console.log(message);