1
0
Fork 0
isopod.cool/not_found.html
2023-01-09 14:30:45 -07:00

28 lines
626 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Not Found</title>
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
<style type="text/css">
body html {
height: 100%;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#Header {
font-size: 7em;
}
</style>
</head>
<body>
<h1 id="Header">404</h1>
<p id="404">Item not found :/</p>
</body>
</html>