-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
65 lines (65 loc) · 2.76 KB
/
Copy path404.html
File metadata and controls
65 lines (65 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="redirect.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found | PanWor</title>
<link rel="icon" href="images/404.png" type="image/png">
<meta content="404 Page Not Found" property="og:title" />
<meta content="The page you are looking for does not exist." property="og:description" />
<meta content="https://panwor.github.io/404" property="og:url" />
<meta content="images/404.png" property="og:image" />
<meta content="#181818" data-react-helmet="true" name="theme-color" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.cdnfonts.com">
<link rel="stylesheet" href="stylesheet/style.css">
</head>
<body>
<div class="container">
<section id="navigation">
<nav>
<div class="nav-item-box">
<a href="/" class="nav-item">
<img class="nav-image" src="images/home.png" alt="Home">
<span>Home</span>
</a>
</div>
<div class="nav-item-box">
<a href="projects/" class="nav-item">
<img class="nav-image" src="images/projects.png" alt="Projects">
<span>Projects</span>
</a>
</div>
<div class="nav-item-box">
<a href="https://github.com/panwor" class="nav-item">
<img class="nav-image" src="images/github.png" alt="GitHub">
<span>GitHub</span>
</a>
</div>
<div class="nav-item-box">
<a href="pl/404.html" class="nav-item">
<img class="nav-image" id="flag" src="images/globe.png" alt="Change language">
<span>Change language (🇵🇱)</span>
</a>
</div>
</nav>
</section>
<header>
<h1>404 - Page Not Found</h1>
</header>
<main>
<div class="post-content">
<p>Oops! The page you're looking for doesn't exist.</p>
<p>Return to the <a href="/">homepage</a> or check out the <a href="projects">projects</a> section.</p>
<p>If you believe this is a mistake, feel free to <a href="https://github.com/panwor">contact me on GitHub</a>.</p>
</div>
</main>
<footer>
<script src="footer.js"></script>
<script src="copyright.js"></script>
</footer>
</div>
</body>
</html>