-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
29 lines (29 loc) · 872 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
<!DOCTYPE html>
<html>
<head>
<title>Looks like there's nothing here</title>
<!-- link to main stylesheet -->
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/cv">CV</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
</nav>
<div class="container" style="text-align: center;">
<div class="blurb">
<h1>404</h1>
<p>This page doesn't exist</p>
</div><!-- /.container -->
<footer>
<ul>
<li><a target="_blank" rel="noopener noreferrer" href="mailto:[email protected]">email</a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://github.com/blaieet">github.com/blaieet</a></li>
</ul>
</footer>
</body>
</html>