Last active
August 8, 2022 00:56
-
-
Save taisang1996/6b21bf84e72289c225fd90cc22e4c310 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// just for fun | |
// fb.com/TaiSangVN | |
document.head.innerHTML = `<style>* { | |
margin: 0; | |
padding: 0; | |
} | |
.hacked { | |
background: black; | |
color: lime; | |
height: 100vh; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
text-align: center; | |
font-size: 3rem; | |
}</style>`; | |
document.body.innerHTML = ` | |
<div class="hacked"> | |
<h1>Hacked By TaiSang</h1> | |
</div> | |
`; | |
window.addEventListener('click', e => alert('You have been hacked by TaiSang')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment