-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path403.html
More file actions
54 lines (54 loc) · 1.1 KB
/
403.html
File metadata and controls
54 lines (54 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Leon | 403</title>
<style>
body {
background-color: black;
color: white;
font-family: 'Courier New', monospace;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
h1 {
font-size: 100px;
color: #5d7e3b;
}
h2 {
font-size: 30px;
color: #ccc;
}
.emoji {
font-size: 80px;
margin-bottom: 20px;
}
a {
margin-top: 30px;
text-decoration: none;
color: white;
border: 2px solid #5d7e3b;
padding: 12px 24px;
border-radius: 10px;
font-family: monospace;
transition: 0.3s;
}
a:hover {
background-color: #5d7e3b;
color: black;
}
</style>
</head>
<body>
<div class="emoji">🚫</div>
<h1>403</h1>
<h2>Du hast keinen Zugriff auf diese Seite.</h2>
<a href="index.html">Zurück zur Startseite</a>
</body>
</html>