Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
Latest commit
73 lines (73 loc) · 1.83 KB
/
Copy path404.html
File metadata and controls
73 lines (73 loc) · 1.83 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
<!doctype html>
<htmllang="en">
<head>
<metacharset="UTF-8" />
<metaname="viewport" content="width=device-width, initial-scale=1.0" />
<metaname="robots" content="noindex" />
<title>Page not found · HackGraph</title>
<linkrel="icon" type="image/svg+xml" href="/favicon.svg" />
<style>
html {
background:#0c0a0b;
color-scheme: dark;
}
body {
margin:0;
min-height:100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: system-ui, -apple-system, sans-serif;
color:#f0eaec;
}
main {
max-width:30rem;
padding:2rem1.5rem;
}
.code {
font-size:0.75rem;
letter-spacing:0.15em;
text-transform: uppercase;
color:#6f6467;
}
h1 {
margin:0.4rem00.6rem;
font-size:1.6rem;
letter-spacing:-0.01em;
}
p {
margin:001.4rem;
line-height:1.65;
color:#b7abad;
}
a.btn {
display: inline-block;
padding:0.5rem0.9rem;
border-radius:0.6rem;
background:#f04450;
color:#fff;
text-decoration: none;
font-weight:600;
font-size:0.9rem;
}
a.txt {
margin-left:1rem;
color:#f04450;
}
</style>
</head>
<body>
<main>
<divclass="code">404 · Page not found</div>
<h1>That page doesn't exist.</h1>
<p>
The link may be broken or the page may have moved. Head back to the interactive
attack-path explorer, or read every technique in the plain-text reference.
</p>
<p>
<aclass="btn" href="/">Open HackGraph</a>
<aclass="txt" href="/reference.html">Text reference</a>
</p>
</main>
</body>
</html>