Last active
March 29, 2018 15:03
-
-
Save victorcfernandes/a66cf11e018c3d0b44f3cf257b8d5053 to your computer and use it in GitHub Desktop.
Happy Easter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ABRA O GOOGLE CHROME, PRESSIONE `CTRL + SHIFT + J`, COLE O CÓDIGO ABAIXO E APERTE ENTER | |
const name = window.prompt("Qual seu nome?", "Anonymous"); | |
const bunny = ` | |
<h1>CONGRATS, ${name}! YOU ARE A HACKER NOW!</h1> | |
<h1>Happy Easter!</h1> | |
<pre style="background:#000; text-align:left; max-width:200px; margin:0 auto;"> | |
/ \ | |
/ _ \ | |
| / \ | | |
|| || _______ | |
|| || |\ \ | |
|| || ||\ \ | |
|| || || \ | | |
|| || || \__/ | |
|| || || || | |
\\_/ \_/ \_// | |
/ _ _ \ | |
/ \ | |
| O O | | |
| \ ___ / | | |
/ \ \_/ / \ | |
/ ----- | --\ \ | |
| \__/|\__/ \ | | |
\ |_|_| / | |
\_____ _____/ | |
\ / | |
| | | |
</pre>`; | |
document.body.style.textAlign = "center"; | |
document.body.style.backgroundColor = "black"; | |
document.body.style.color = "#00FF00"; | |
document.body.style.fontFamily = "monospace"; | |
document.body.innerHTML = bunny; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment