19 lines
545 B
HTML
19 lines
545 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Error 404 - Not Found</title>
|
||
|
<style>
|
||
|
body {
|
||
|
width: 35em;
|
||
|
margin: 0 auto;
|
||
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Are you lost?</h1>
|
||
|
<p>I looked all over but couldn't find what you wanted! I promise I
|
||
|
tried my best!</p>
|
||
|
<h3><em>Please make sure you typed the right address and try again</em></h3>
|
||
|
</body>
|
||
|
</html>
|