Skip to content

Instantly share code, notes, and snippets.

@janglapuk
Created September 12, 2022 06:25
Show Gist options
  • Save janglapuk/99dc3c3946e8a1274195ebdf13a13881 to your computer and use it in GitHub Desktop.
Save janglapuk/99dc3c3946e8a1274195ebdf13a13881 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
*{
line-height: 1.2;
margin: 0;
}
html {
color: #888;
display: table;
font-family: sans-serif;
height: 100%;
text-align: center;
width: 100%;
}
body {
display: table-cell;
vertical-align: middle;
margin: 2em auto;
}
h1 {
color: #555;
font-size: 9em;
font-weight: 400;
}
p {
margin: 0 auto;
width: 280px;
}
</style>
</head>
<body>
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Sorry, but the page you were trying to view does not exist.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment