-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (69 loc) · 3.31 KB
/
index.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
70
71
72
73
74
75
76
77
78
<!doctype html>
<html class="no-js" lang="">
<!-- Stack: HTML, SASS, JavaScript, JQuery... -->
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>BogoLoops</title>
<meta name="author" content="Frank Gunsch">
<meta name="description" content="How fast can your computer do nothing?">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no user-scalable=0">
<link rel="manifest" href="site.webmanifest">
<link href="https://fonts.googleapis.com/css?family=Berkshire+Swash" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Baloo+Thambi" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Monoton" rel="stylesheet">
<link rel="apple-touch-icon" href="icon.png">
<link rel="shortcut icon" href="faviconstar.ico" type="image/x-icon">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/media-query.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Add your site or application content here -->
<div class="bogoTitle centerAlign">
<p class="BogoTitle-0">B</p>
<p class="BogoTitle-1">O</p>
<p class="BogoTitle-2">G</p>
<p class="BogoTitle-3">O</p>
<p class="BogoTitle-4">L</p>
<p class="BogoTitle-5">O</p>
<p class="BogoTitle-6">O</p>
<p class="BogoTitle-7">P</p>
<p class="BogoTitle-8">S</p>
</div>
<div class="bogoGoButtonContainer centerAlign">
<a href="javascript:;" id="mainButton" class="bogoGoButton hvr-box-shadow-inset">Click here to do nothing.</a>
</div>
<div class="bogoDescription centerAlign">
<p class="centerAlign description">How fast can your browser do nothing?!(Its just an empty for loop) 😎</p>
</div>
<div class="bogoGoButtonContainer centerAlign">
<a href="javascript:;" id="mainButton" class="bogoGoButton hvr-box-shadow-inset">Click here to do nothing.</a>
</div>
<div class="bogoSignature">
<p class="centerAlign bogoSignaturePara">Made by Frank Gunsch</p>
<p class="centerAlign"><a href="https://github.com/Yonkai" target="_blank"><i class="fab fa-github fa-2x "></i></a></p>
</div>
</div>
<script src="js/vendor/modernizr-3.6.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script>
window.jQuery || document.write('<script src="js/vendor/jquery-3.3.1.min.js"><\/script>')
</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Add GA later
Google Analytics: change UA-XXXXX-Y to be your site's ID.
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
-->
</body>
</html>