-
Notifications
You must be signed in to change notification settings - Fork 0
/
403.html
76 lines (72 loc) · 1.4 KB
/
403.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<title>dvtolochko</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="">
<style>
body {background-color:black}
h1 {color:blue}
p {color:green}
b {color:white}
.blinking-cursor {
font-weight: 100;
font-size: 18px;
color: #2E3D48;
-webkit-animation: 1s blink step-end infinite;
-moz-animation: 1s blink step-end infinite;
-ms-animation: 1s blink step-end infinite;
-o-animation: 1s blink step-end infinite;
animation: 1s blink step-end infinite;
}
@keyframes "blink" {
from, to {
color: transparent;
}
50% {
color: white;
}
}
@-moz-keyframes blink {
from, to {
color: transparent;
}
50% {
color: white;
}
}
@-webkit-keyframes "blink" {
from, to {
color: transparent;
}
50% {
color: white;
}
}
@-ms-keyframes "blink" {
from, to {
color: transparent;
}
50% {
color: white;
}
}
@-o-keyframes "blink" {
from, to {
color: transparent;
}
50% {
color: white;
}
}
</style>
</head>
<body>
<font face="monaco" color="white">root@server1: </font><font face="monaco" color="red">Error 403</font></br>
<font face="monaco" color="white">root@server1: </font><span class="blinking-cursor">|</span>
</body>
</html>