Skip to content

Instantly share code, notes, and snippets.

@ovzer
ovzer / index.html
Last active March 28, 2024 15:08
Website that closes itself
<!doctype html><html><head><script>
window.onload = function load() {
window.close('','_parent','');
};
</script></head><body></body></html>