-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
20 lines (20 loc) · 754 Bytes
/
404.html
File metadata and controls
20 lines (20 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<!-- P.S This is a spam killer, inspired by Office of Strategic Influence's spam killer. -->
<html>
<head><title>iamunknown2's site!</title></head>
<body>
<div id="div1"></div>
<script id="script">
for (var i = 0; i < 1000; i++) {
var rand = Math.random().toString();
document.getElementById("div1").innerHTML = document.getElementById("div1").innerHTML + "<br>" + "<a href=\"mailto:" + rand.slice(2, rand.length) + "@gmail.com\">" + rand.slice(2, rand.length) + "@gmail.com" + "</a>";
};
</script>
<br>
<div id="div2"><a id="next">Next</a></div>
<script>
var rand = Math.random().toString();
document.getElementById("next").setAttribute("href", rand.slice(2, rand.length));
</script>
</body>
</html>