-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
92 lines (81 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href="assets/img/besen.png" rel="icon" type="image/x-icon" />
<script src="./assets/js/F12-disable.js"></script>
<script src="https://kit.fontawesome.com/d5f0c557a0.js" crossorigin="anonymous"></script>
<title>CollinIzDa - 404</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Comfortaa');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
html,
body {
display: grid;
height: 100%;
width: 100%;
place-items: center;
background-color: #17181C;
user-select: none;
}
.title {
text-align: center;
}
.title .errorr {
color: white;
font-size: 6rem;
}
.title .not {
color: white;
font-size: 2rem;
}
.knopf {
font-family: Comfortaa;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 25px;
margin: 24px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
border-radius: 8px;
max-width: 99%;
max-height: 99%;
align-self: center;
}
.back {
background-image: linear-gradient(to right, #fbc2eb 0%, #00ffff 50%, #75b5ff 100%);
border-color: #00ffff;
background-size: 200% auto;
color: white;
transition: 0.5s;
}
.back:hover {
background-position: right center;
color: white;
transition: 0.5s;
}
</style>
<body oncontextmenu="return false;" onkeydown="return false;">
<div class="title">
<h1 class="errorr">404</h1>
<h1 class="not">The page does not exist.</h1>
<a class="knopf back" href="https://collinizda.com/">
<i class="fa-solid fa-home"></i>
Home
</a>
</div>
</body>
</html>