-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
79 lines (63 loc) · 2.54 KB
/
404.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
79
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Cyber Alliance India | 404</title>
<meta name="description" content="Find us online!">
<meta name="author" content="Yudhvir Singh Godara">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content=Cyber Alliance India | 404" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://link.cyberlliance.in" />
<meta property="og:image" content="https://link.cyberlliance.in/img/og.image.png" />
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="https://link.cyberalliance.in/img/apple-touch.png">
<link rel="stylesheet" href="css/404.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<section class="notFound">
<div class="img">
<img src="img/heroes/backToTheHomepage.webp" alt="Back to the Homepage"/>
<img src="img/heroes/Delorean.webp" alt="El Delorean, El Doc y Marti McFly"/>
</div>
<div class="text">
<h1>404</h1>
<h2>PAGE NOT FOUND</h2>
<h3>BACK TO HOME?</h3>
<a href="index.html" class="yes">YES</a>
<a href="https://www.youtube.com/watch?v=GtL1huin9EE">NO</a>
</div>
</section>
</body>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="js/vendor/push.min.js"></script>
<script src="js/vendor/serviceWorker.min.js"></script>
<!-- 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('set', 'anonymizeIp', true); ga('set','transport','beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script> -->
<script>
// Check that service workers are supported
if ('serviceWorker' in navigator) {
// Use the window load event to keep the page load performant
window.addEventListener('load', () => {
navigator.serviceWorker.register('/service-worker.js');
});
}
// Push Notification
Push.create("Ah huh 😖",{
body: "You're not supposed to be here!",
icon: '/icon.png',
timeout: 20000,
onClick: function () {
window.focus();
this.close();
}
});
</script>
</body>
</html>