35 lines
511 B
HTML
35 lines
511 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Error 404 | Not found</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<style>
|
|
body {
|
|
background: #065687;
|
|
color: #2E2F30;
|
|
font-family: arial, sans-serif;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: white;
|
|
font-size: 160px;
|
|
line-height: 160px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
h2 {
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<h1>404</h1>
|
|
<h2>Not found.</h2>
|
|
</div>
|
|
</body>
|
|
</html>
|