-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
63 lines (62 loc) · 1.54 KB
/
404.html
File metadata and controls
63 lines (62 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>404 - B-HD™</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
background-color: #121212; /* темный фон */
color: #e0e0e0; /* светлый текст */
font-family: 'Inter Tight', sans-serif;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
flex-direction: column;
}
h1 {
font-size: 8rem;
margin: 0;
font-weight: 700;
letter-spacing: 8px;
color: #e0e0e0;
}
h2 {
font-weight: 400;
font-size: 2rem;
margin: 0.5rem 0 1.5rem;
color: #bbbbbb;
}
p {
font-size: 1.2rem;
margin-bottom: 2rem;
max-width: 400px;
color: #999999;
}
a.btn {
display: inline-block;
padding: 0.8rem 2rem;
font-weight: 700;
font-size: 1rem;
color: #121212;
background-color: #bb86fc;
border-radius: 30px;
text-decoration: none;
transition: background-color 0.3s ease;
}
a.btn:hover {
background-color: #9a67ea;
}
</style>
</head>
<body>
<h1>404</h1>
<h2>Страница не найдена</h2>
<p>Извините, но запрашиваемая страница не существует или была перемещена.</p>
<a class="btn" href="https://bhd.pp.ua/">Вернуться на главную</a>
</body>
</html>