-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
73 lines (67 loc) · 1.57 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
<!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">
<link rel="stylesheet" href="https://copy05.github.io/Portfolio/mobile.css">
<link rel="stylesheet" href="https://copy05.github.io/Portfolio/style.css">
<link rel="icon" type="image/png" href="https://copy05.github.io/Portfolio/pics/favicon.png">
<title>404 | Copy</title>
</head>
<body>
<style>
.foftxtc, .fofhref, .foftxtsmall {
color: white;
font-size: 45px;
font-family: 'googlesans';
padding: 10px 0px;
}
.fof {
padding: 100px 0px;
animation: fadingIn ease 2s;
}
.foftxtc {
text-align: center;
font-size: 150px;
}
.foftxtsmall {
text-align: center;
}
.foftxtc, .fofhref:hover {
color: #fff;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px #464cd7,
0 0 82px #464cd7,
0 0 92px #464cd7,
0 0 102px #464cd7,
0 0 151px #464cd7;
}
.fofhref, .fofhref:visited {
transition: 0.5;
text-align: center;
}
#centre {
text-align: center;
}
@keyframes fadingIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
<div class="fof">
<p class="foftxtc">404</p>
<p class="foftxtsmall">The site you try to access does not exist</p>
<div id="centre">
<a class="fofhref" href="index.html">Back</a>
</div>
</div>
</body>
</html>