This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
executable file
·128 lines (107 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ERROR 404 | Hack-e-Sta</title>
<style>
body{
text-align: center;
color: #165522;
font-family: 'Open Sans';
font-weight: 700;
}
.links-wrapper{
margin-top: 20px;
}
ul.links{
float: none;
display: block;
margin: 0px auto;
}
ul.links li{
list-style-type: none;
display: block;
float: left;
margin-right: 10px;
margin-bottom: 20px;
}
ul.links li a{
height: 50px;
width: 50px;
min-width: 50px;
display: inline-block;
padding: 3px 0px;
background-color: #eee;
border-radius: 50%;
text-align: center;
color: #165522;
transition: all .2s linear; -moz-transition: all .2s linear; -webkit-transition : all .2s linear; -o-transition: all .2s linear;
}
ul.links li a:hover{
background-color: #165522;
color: #fff;
}
ul.links li a i{
padding: 10px 0px;
}
</style>
<!-- Begin 33Across SiteCTRL -->
<script>
var Tynt=Tynt||[];Tynt.push('ckoVtYBFCr564xaKlgYj8u');
(function(){var h,s=document.createElement('script');
s.src=(window.location.protocol==='https:'?
'https':'http')+'://cdn.tynt.com/ti.js';
h=document.getElementsByTagName('script')[0];
h.parentNode.insertBefore(s,h);})();
</script>
<!-- End 33Across SiteCTRL -->
</head>
<body>
<div id="wrapper">
<!-- Page Content -->
<div id="page-content-wrapper" class="container">
<div class="row">
<div class="col-md-12">
<h1 style="font-family: 'Open Sans'; font-weight: 700;" class="animated fadeInLeft">SOMETHING WENT WRONG!</h1>
</div>
<div class="col-md-12">
<h1 id="error" style="font-family: 'Open Sans'; font-weight: 700; font-size: 10em;" class="animated fadeInRight">0</h1>
</div>
<div class="col-md-12">
<h2 class="animated bounceIn">Page Not Found!</h2>
</div>
<div class="col-md-12" style="margin-top: 50px;">
<a href="/index.html">
<img src="/assets/media/logo_main_horizontal.svg" alt="Hack-e-Sta Logo">
</a>
</div>
<div class="col-md-4 col-md-offset-4 links-wrapper">
<ul class="links">
<li class="animated fadeInRight"><a href="/index.html"><i class="fa fa-home fa-2x"></i></a></li>
<li class="animated fadeInRight"><a href="https://facebook.com/hackesta"><i class="fa fa-facebook fa-2x"></i></a></li>
<li class="animated fadeInRight"><a href="https://instagram.com/hackesta"><i class="fa fa-instagram fa-2x"></i></a></li>
<li class="animated fadeInRight"><a href="https://github.com/hackesta"><i class="fa fa-github fa-2x"></i></a></li>
<li class="animated fadeInRight"><a href="mailto:developer@hackesta.org"><i class="fa fa-envelope fa-2x"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
<!-- /#wrapper -->
<!-- jQuery -->
<script src="/assets/js/jquery-3.2.1.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="/assets/js/bootstrap.min.js"></script>
<script src="/assets/js/util.js" charset="utf-8"></script>
<script src="/assets/js/countUp.js" charset="utf-8"></script>
<script type="text/javascript">
var count = new countUp("error", 0, 404, 0, 3);
window.onload = function(){
count.start();
}
</script>
</body>
</html>