-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
38 lines (35 loc) · 976 Bytes
/
404.html
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">
<title>404 Error</title>
<meta name="viewport" content="width=device-width">
<meta name="description" content="Noah Sapp's Website">
<meta name="author" content="Noah Sapp">
<link rel="stylesheet" href="stylesheet.css">
<link rel="shortcut icon" type="image/png" href="favicon.png">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Noah Sapp</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</header>
<section id="main">
<div class="container">
<article id="main-col">
<h1 class="page-title">Uh oh spaghettio, that's a 404</h1>
<p>Whoops, the address you tried to visit isn't here.</p>
</article>
</div>
</section>
</body>
</html>