-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
111 lines (100 loc) · 2.74 KB
/
404.html
File metadata and controls
111 lines (100 loc) · 2.74 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
---
layout: mainLayout
title: "404 - Page Not Found"
permalink: /404.html
---
<section style="text-align: center; padding: 80px 20px;">
<!-- Large 404 Number -->
<h1 style="
font-size: 120px;
font-weight: 700;
margin: 0 0 20px;
color: var(--clr-h1-and-bold);
line-height: 1;
">404</h1>
<!-- Error Message -->
<h2 style="
color: var(--clr-h2);
margin-bottom: 20px;
font-size: 32px;
">Page Not Found</h2>
<!-- Description -->
<p style="
margin-bottom: 40px;
font-size: 18px;
color: var(--clr-text);
max-width: 500px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
">
Sorry, the page you're looking for doesn't exist or has been moved.
Let's get you back to exploring my portfolio!
</p>
<!-- Navigation Options -->
<div style="display: flex; gap: 15px; justify-content: center; flex-wrap: wrap;">
<!-- Home Button -->
<a href="/" style="
display: inline-block;
padding: 12px 24px;
background: var(--clr-buttons-main-bg);
border: 1px solid var(--clr-buttons-main-border);
border-radius: 5px;
color: var(--clr-buttons-main-text);
text-decoration: none;
transition: all 0.3s ease;
font-weight: 500;
" onmouseover="this.style.color='var(--clr-buttons-main-text-hover)'"
onmouseout="this.style.color='var(--clr-buttons-main-text)'">
<i class="fa-solid fa-home"></i> Return Home
</a>
<!-- Contact Button -->
<a href="mailto:odinlee.pro@gmail.com" style="
display: inline-block;
padding: 12px 24px;
background: var(--clr-buttons-main-bg);
border: 1px solid var(--clr-buttons-main-border);
border-radius: 5px;
color: var(--clr-buttons-main-text);
text-decoration: none;
transition: all 0.3s ease;
font-weight: 500;
" onmouseover="this.style.color='var(--clr-buttons-main-text-hover)'"
onmouseout="this.style.color='var(--clr-buttons-main-text)'">
<i class="fa-solid fa-envelope"></i> Contact Me
</a>
</div>
<!-- Helpful suggestion -->
<p style="
margin-top: 40px;
font-size: 14px;
color: var(--clr-text);
opacity: 0.7;
">
<i class="fa-solid fa-lightbulb"></i>
Tip: Check out my latest data science projects and skills above!
</p>
</section>
<!-- Add some responsive styling -->
<style>
@media screen and (max-width: 600px) {
section h1 {
font-size: 80px !important;
}
section h2 {
font-size: 24px !important;
}
section p {
font-size: 16px !important;
padding: 0 10px;
}
section div {
flex-direction: column !important;
align-items: center;
}
section div a {
width: 200px;
text-align: center;
}
}
</style>