-
Notifications
You must be signed in to change notification settings - Fork 5
/
404.html
55 lines (47 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>404</title>
<style>
@font-face {
font-family: 'g';
src: url('/Geometria-Light.otf');
}
body {
margin: 0;
background: #d5052b;
background-image: linear-gradient(to right, #ec77ab 0%, #7873f5 100%);
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
font-family: 'g';
}
a {
color: white;
font-size: 20px;
text-align: center;
text-decoration: none;
}
img {
max-height: 80vh;
width: 1000px;
max-width: 100%;
}
div {
text-transform: uppercase;
}
</style>
</head>
<body>
<a href="/">
<div class="div">Такої сторінки<br>наразі не існує</div>
<!-- <img src="/seal.png" alt="seal"> -->
<img src="/Bud.svg" alt="">
<div>Om ah Hum</div>
</a>
</body>
</html>