-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
82 lines (74 loc) · 1.75 KB
/
Copy path404.html
File metadata and controls
82 lines (74 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 — Page Not Found</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #0d0d0d;
color: #e5e5e5;
font-family: system-ui, -apple-system, sans-serif;
padding: 2rem;
}
.card {
text-align: center;
max-width: 420px;
width: 100%;
}
.code {
font-size: 6rem;
font-weight: 800;
line-height: 1;
color: #fff;
letter-spacing: -4px;
}
.divider {
width: 48px;
height: 3px;
background: #555;
margin: 1.5rem auto;
border-radius: 2px;
}
h1 {
font-size: 1.25rem;
font-weight: 600;
color: #ccc;
margin-bottom: 0.75rem;
}
p {
font-size: 0.95rem;
color: #888;
line-height: 1.6;
margin-bottom: 2rem;
}
a.btn {
display: inline-block;
padding: 0.65rem 1.5rem;
background: #fff;
color: #0d0d0d;
font-weight: 600;
font-size: 0.9rem;
text-decoration: none;
border-radius: 6px;
transition: opacity 0.15s;
}
a.btn:hover { opacity: 0.85; }
</style>
</head>
<body>
<div class="card">
<div class="code">404</div>
<div class="divider"></div>
<h1>Page not found</h1>
<p>The address you followed doesn't exist or has moved. Check the URL or head back to the main site.</p>
<!-- Replace this with your website URL -->
<a class="btn" href="https://www.inds.space">Back to website</a>
</div>
</body>
</html>