-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
62 lines (60 loc) · 1.73 KB
/
404.html
File metadata and controls
62 lines (60 loc) · 1.73 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">
<title>Page Not Found</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background: #19336e;
color: white;
}
a {
color: #38bdf8;
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<!-- <h1>404</h1> -->
<pre> <strong> _ _ ___ _ _
| || | / _ \| || |
| || |_| | | | || |_
|__ _| | | |__ _|
| | | |_| | | |
|_| \___/ |_| </strong></pre>
<p>This page doesn’t exist. Just like my free time.</p>
<!-- <blockquote>Not all those who wander are lost. <br>— J.R.R. Tolkien</blockquote>-->
<a href="https://hellenicdev.github.io/?utm_source=404" class="outline-button">Go back home</a>
<style>
blockquote {
font-style: italic; /* classic quote style */
color: #a0aec0; /* light grayish-blue */
border-left: 4px solid #38bdf8; /* colored bar on the left */
padding-left: 15px;
margin: 20px 0;
font-size: 1.2rem;
}
</style>
<style>
.outline-button {
display: inline-block; /* Make it behave like a button */
padding: 10px 20px; /* Add some space inside */
font-family: monospace; /* Optional: match ASCII style */
font-size: 16px;
color: #38bdf8; /* Button text color */
border: 2px solid #38bdf8; /* Outline color */
border-radius: 6px; /* Rounded corners */
text-decoration: none; /* Remove underline */
transition: all 0.2s ease; /* Smooth hover effect */
}
.outline-button:hover {
background-color: #141625; /* Fill color on hover */
color: white; /* Text turns white */
}
</style>
</body>
</html>