-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
93 lines (90 loc) · 2.85 KB
/
Copy path404.html
File metadata and controls
93 lines (90 loc) · 2.85 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
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
93
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<meta name="googlebot" content="noindex, nofollow">
<title>404 - Сторінку не знайдено | KeyTest.pp.ua</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #1a1a1a;
color: #fff;
text-align: center;
padding: 50px 20px;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 30px;
background-color: #2a2a2a;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
h1 {
font-size: 72px;
margin: 0;
color: #ff4d4d;
}
h2 {
font-size: 28px;
margin: 20px 0;
}
p {
font-size: 18px;
margin-bottom: 30px;
}
a {
display: inline-block;
padding: 12px 30px;
background-color: #4a90e2;
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
transition: background-color 0.3s;
}
a:hover {
background-color: #357abd;
}
.key {
display: inline-block;
width: 80px;
height: 80px;
margin: 20px 5px;
background-color: #333;
color: #fff;
text-align: center;
line-height: 80px;
font-size: 24px;
border-radius: 8px;
box-shadow: 0 4px 0 #222;
}
.key.active {
background-color: #555;
}
.keyboard {
margin: 30px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>Сторінку не знайдено</h2>
<p>Вибачте, але сторінка, яку ви шукаєте, не існує або була переміщена.</p>
<div class="keyboard">
<div class="key active">4</div>
<div class="key active">0</div>
<div class="key active">4</div>
</div>
<p>Поверніться на головну сторінку, щоб продовжити роботу з нашим сервісом.</p>
<a href="/">На головну</a>
</div>
<footer style="margin-top: 50px; color: #888; font-size: 14px;">
<p>© 2018-2026 KeyTest.pp.ua - Безкоштовний тест клавіатури онлайн</p>
</footer>
</body>
</html>