-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
29 lines (29 loc) · 1.12 KB
/
Copy path404.html
File metadata and controls
29 lines (29 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#06101d">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="styles.css">
<title>Page Not Found | Mitchell Stack</title>
</head>
<body>
<nav class="nav" aria-label="Main navigation">
<div class="wrap nav-inner">
<a class="brand" href="index.html"><span class="brand-mark" aria-hidden="true">M</span><span>Mitchell <span>Stack</span></span></a>
<div class="nav-links"><a class="btn" href="index.html">Return home</a></div>
</div>
</nav>
<main>
<section class="page-hero">
<div class="wrap">
<span class="eyebrow">Error 404</span>
<h1>This page is <span class="gradient-text">not available.</span></h1>
<p>The address may be incorrect or the page may have moved. Return to the Mitchell Stack homepage to continue.</p>
<div class="actions"><a class="btn btn-primary" href="index.html">Go to homepage</a></div>
</div>
</section>
</main>
</body>
</html>