-
Notifications
You must be signed in to change notification settings - Fork 0
/
konami.html
69 lines (67 loc) · 2.13 KB
/
konami.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
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel='shortcut icon'
type='image/x-icon'
href='favicon.ico'>
<title>Flashy Page!!!!</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55477420-2', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<script>
function blinkFont()
{
document.getElementById("blink").style.color="white"
document.getElementById("blink").style.background="black"
setTimeout("setblinkFont()",1)
}
function setblinkFont()
{
document.getElementById("blink").style.color="black"
document.getElementById("blink").style.background="white"
setTimeout("blinkFont()",1)
}
$(document).ready(blinkFont);
</script>
<style>
#blink {
display: inline-block;
font-weight: bold;
font-size: 120pt;
font-family: Arial, sans-serif;
text-decoration: none;
text-align:center;"
}
#blink span {
font-size:2em;
font-weight:bold;
display:block;
}
</style>
<!-- Start of StatCounter Code for Default Guide -->
<script type="text/javascript">
var sc_project=10223198;
var sc_invisible=1;
var sc_security="0b89fa91";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
<noscript><div class="statcounter"><a title="shopify
analytics ecommerce" href="http://statcounter.com/shopify/"
target="_blank"><img class="statcounter"
src="http://c.statcounter.com/10223198/0/0b89fa91/1/"
alt="shopify analytics ecommerce"></a></div></noscript>
<!-- End of StatCounter Code for Default Guide -->
<body id="blink" style = "height = 100%">Congratulations, you have reached the super secret page in my site!!!</body>
</html>