This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
88 lines (61 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<title>Decompiled</title>
<link rel="icon" type="image/png" href="/images/logo.png"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
background: #111;
}
.indicate_blink {
display: none;
}
.typingEffect{
font-family: lato;
font-size: 30px;
font-weight: 700;
width: 460px;
color:rgb(114, 221, 7);
white-space:nowrap;
overflow:hidden;
border-right: 5px solid #424242;
animation: type 4s steps(30, end), cursorblink 1s step-end infinite;
}
@keyframes type {
from { width: 0; }
to { width:460px; }
}
@keyframes cursorblink{
from, to {border-color: transparent}
50%{ border-color:#424242}
}
</style>
</head>
<body>
<br>
<br>
<br>
<br>
<br>
<div class="container">
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-4">
<img class="img-responsive" src="images/logo.png">
<center><h1> <i style="font-size:54px" class="fa fa-home"></i><a href="https://decompiled.in/">Home</a></h1></center>
<div>
<p class="typingEffect"> > 404 Page Not Found !!</p>
</div>
</div>
<div class="col-sm-4"></div>
</div>
</div>
</body>
</html>