-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
79 lines (74 loc) · 2.67 KB
/
Copy path404.html
File metadata and controls
79 lines (74 loc) · 2.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>404 - Page Not Found | criptixo</title>
<meta name="description" content="Page not found. Return to criptixo's homepage." />
<meta name="robots" content="noindex, nofollow" />
<!-- Theme -->
<meta name="theme-color" content="#0a0a0a" />
<link rel="stylesheet" href="/style.css" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon.png" />
<link rel="shortcut icon" href="/favicon.png" />
</head>
<body>
<div class="container">
<header>
<a href="/" class="brand" aria-label="Home">criptixo</a>
<nav class="tabs">
<a href="/">Home</a>
<a href="/blog/">Blog</a>
<a href="/gallery/">Gallery</a>
</nav>
</header>
<section class="main">
<div class="box term">
<div class="title term-title">404 - Not Found</div>
<div class="content-section">
<div class="content-item">
<span class="content-label">Error:</span>
<span class="content-text">The page you're looking for doesn't exist.</span>
</div>
<div class="content-item">
<span class="content-label">Solution:</span>
<span class="content-text">
<a href="/">Return to homepage</a> or try one of these links:
</span>
</div>
</div>
</div>
<div class="box pink">
<div class="title term-title">Quick Links</div>
<div class="content-section">
<div class="content-item">
<span class="content-label">Blog:</span>
<a href="/blog/">Read my latest posts</a>
</div>
<div class="content-item">
<span class="content-label">Gallery:</span>
<a href="/gallery/">View my photos</a>
</div>
<div class="content-item">
<span class="content-label">GitHub:</span>
<a href="https://github.com/criptixo" target="_blank" rel="noopener">Check out my code</a>
</div>
<div class="content-item">
<span class="content-label">Contact:</span>
<a href="mailto:contact@criptixo.me">Get in touch</a>
</div>
</div>
</div>
</section>
<footer class="site-footer">
<div class="footer-content">
<span class="footer-left">© 2025 criptixo</span>
<a href="https://ko-fi.com/criptixo" target="_blank" rel="noopener" class="kofi-link">
buy me a coffee
</a>
</div>
</footer>
</div>
</body>
</html>