Last active
November 30, 2020 09:10
-
-
Save kmelve/c037e7cbd32d668bb7e8297aae774bd0 to your computer and use it in GitHub Desktop.
JavaScript-less no JS please. Inspired by https://heydonworks.com/
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
<html> | |
<head> | |
<title>No JS please</title> | |
</head> | |
<body> | |
<main> | |
<noscript> | |
Content! | |
<style> | |
.js { | |
display: none; | |
} | |
</style> | |
</noscript> | |
<p class="js"> | |
<a href="https://duckduckgo.com/?q=how+to+turn+off+javascript+in+browser&t=h_&ia=web">Please disable JavaScript to view this site.</a> | |
</p> | |
</main> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment