-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
38 lines (35 loc) · 1.14 KB
/
404.html
File metadata and controls
38 lines (35 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#ffdb3a" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#111111" media="(prefers-color-scheme: dark)" />
<title>404 — Jakub Syrek</title>
<link rel="icon" type="image/png" href="images/favicon-32.png" />
<link rel="manifest" href="/manifest.json" />
<link rel="stylesheet" href="stylesheets/style.css" />
<link rel="preload"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap" as="style"
onload="this.onload=null;this.rel='stylesheet'" />
<noscript>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap" />
</noscript>
</head>
<body>
<main id="main">
<div class="card">
<div class="info">
<div id="my-name">
<h1>404</h1>
</div>
<p>This page doesn't exist.</p>
<p>
<a href="/" class="highlight">Go home</a>
</p>
</div>
</div>
</main>
</body>
</html>