Skip to content

Instantly share code, notes, and snippets.

@taisang1996
Last active August 8, 2022 00:56
Show Gist options
  • Save taisang1996/6b21bf84e72289c225fd90cc22e4c310 to your computer and use it in GitHub Desktop.
Save taisang1996/6b21bf84e72289c225fd90cc22e4c310 to your computer and use it in GitHub Desktop.
// 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