-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
59 lines (52 loc) · 1.1 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
<!DOCTYPE html>
<html lang="cs">
<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" />
<title>404</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
* {
margin: 0;
}
html,
body {
margin: 0;
padding: 0;
}
body {
width: 100%;
height: 100vh;
font-family: "Inter", sans-serif;
display: grid;
place-items: center;
text-align: center;
text-transform: uppercase;
}
h1 {
font-size: 5em;
}
a {
display: inline-block;
color: white;
background: #1b924f
linear-gradient(to bottom right, #30ad66, #0a7739);
line-height: 1.3;
text-decoration: none;
font-weight: 500;
padding: 8px 16px;
margin: 16px 0 0;
border-radius: 16px;
box-shadow: 0 0 24px -8px #0a7739;
}
</style>
</head>
<body>
<div>
<h1>404</h1>
<p>Tato stránka neexistuje</p>
<a href="/maturita-formalita/">Zpět na rozcestník</a>
</div>
</body>
</html>