-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfreepants.html
64 lines (48 loc) · 1.66 KB
/
freepants.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--
Trash magic is self-replicating media made of trash which forms an unenclosed digital commons outside of the system of private property.
-->
<!--Stop Google:-->
<META NAME="robots" CONTENT="noindex,nofollow">
<title>TRASH MAGIC NETWORK</title>
<script src = "trashmagic.js"></script>
<link rel="stylesheet" href="trashmagic.css">
<script src = "https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
</head>
<body>
<div id = "mainscroll">
<a href = "index.html">Home</a>
<h1>FREE PANTS!</h1>
<img src= "https://raw.githubusercontent.com/LafeLabs/freepants/main/trashmagic/qrcode.png"/>
<img src= "https://raw.githubusercontent.com/LafeLabs/freepants/main/trashmagic/replicator-set.png"/>
<img src= "https://raw.githubusercontent.com/LafeLabs/freepants/main/trashmagic/zine.png"/>
<img src= "https://raw.githubusercontent.com/LafeLabs/freepants/main/trashmagic/server.png"/>
</div>
<script>
titles = document.getElementsByTagName("H1");
for(var index = 0;index < titles.length;index++){
rainbowstring(titles[index]);
}
rainbow(document.getElementsByTagName("A"));
googleyeyes(20);//20 eyes in my head!
codesquaresize = 170;
marginsize = 40;
fontsize = 12;
//globalurl = "http://www.trashrobot.org/qrcode.html";
globalurl = window.location.href;
qrcode = new QRCode(document.getElementById("qrcode"), {
text: globalurl,
width: codesquaresize,
height: codesquaresize,
colorDark : "#000000",
colorLight : "#ffffff",
correctLevel : QRCode.CorrectLevel.H
});
</script>
<style>
</style>
</body>
</html>