-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.bk2
63 lines (54 loc) · 1.55 KB
/
index.html.bk2
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
63
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
</head>
<body>
<style>
body {
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#4A96FE", endColorstr="#8761F6", GradientType=1 );
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#4A96FE", endColorstr="#8761F6", GradientType=1 );
font-family: 'Montserrat', sans-serif;
background-color: #f9f9f9;
background-repeat: repeat-y;
border-radius: 15px;
cursor: url("https://subscribie.co.uk/appsumo/cursor.gif");
}
</style>
<h1>✨ Subscribie AppSumo Redemption ✨</h1>
<!-- Mandatory 90s throwback -->
<marquee direction="down" width="100%" height="50" behavior="alternate">
<marquee behavior="alternate">
Claim this amazing offer right now or be sad
</marquee>
</marquee>
</marquee>
<form onsubmit="go(event)" action="#">
<label for="appsumo_redemption">AppSumo code</label>
<input name="appsumo_redemption" id="appsumo_redemption" placeholder="Enter your AppSumo code"/>
<br />
<input type="submit" value="Lets go!🚀" />
</form>
<h2>Redemption Instructions</h2>
<ol>
<li>Enter your code</li>
<li>Press submit</li>
<li>Enjoy!</li>
</ol>
<span class="tacos">
🌮
</span>
<script>
function go(e) {
alert("ok");
document.location = "https://subscribie.co.uk/start-building";
e.preventDefault();
}
function multiplyNode(node, count, deep) {
for (var i = 0, copy; i < count - 1; i++) {
copy = node.cloneNode(deep);
node.parentNode.insertBefore(copy, node);
}
}
multiplyNode(document.querySelector('.tacos'), 500, true);
</script>
</body>