blob: 946c9c84096f5a9916e979ade79d481922102bef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>JavaScript is banned here</title>
<link rel="stylesheet" href="./style.css" />
<link rel="icon" href="./favicon.ico" sizes="any" />
<!--link rel="icon" href="./icon.svg" type="image/svg+xml" / -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#241504" />
<meta name="color-scheme" content="light dark">
</head>
<body>
<header>
<h1>JavaScript is banned here</h1>
</header>
<article>
<p>
If you can see this page, then JavaScript is disabled. Great!
</p>
</article>
<footer>
<ul role="list">
<li><a href="./">Home</a></li>
<li>Runxi Yu</li>
<li><a rel="license" href="./pubdom.html">Public Domain</a></li>
</ul>
</footer>
<script>
document.head.innerHTML = '<meta charset="UTF-8"><title>JavaScript detected</title>'
document.body.innerHTML = 'Please disable JavaScript to view this page.'
</script>
</body>
</html>
|