-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
61 lines (61 loc) · 1.64 KB
/
Copy path404.html
File metadata and controls
61 lines (61 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found – ISO 42001 Visual Library</title>
<meta name="robots" content="noindex">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #f8f9fa;
color: #1a1a2e;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
text-align: center;
}
.code {
font-size: 5rem;
font-weight: 700;
color: #0d1b2a;
line-height: 1;
margin-bottom: 0.5rem;
}
h1 {
font-size: 1.5rem;
font-weight: 600;
color: #1565c0;
margin-bottom: 1rem;
}
p {
color: #555;
max-width: 480px;
margin-bottom: 2rem;
line-height: 1.6;
}
a.btn {
display: inline-block;
background: #1565c0;
color: #fff;
text-decoration: none;
padding: 0.75rem 1.75rem;
border-radius: 6px;
font-weight: 600;
font-size: 0.95rem;
}
a.btn:hover { background: #0d47a1; }
</style>
</head>
<body>
<div class="code">404</div>
<h1>Page Not Found</h1>
<p>The page you're looking for doesn't exist or has been moved. Head back to the gallery to find the ISO 42001 card you need.</p>
<a class="btn" href="https://nelsambrose.github.io/ISO-42001-Visual-Library/">Go to the Gallery</a>
</body>
</html>