Skip to content

Instantly share code, notes, and snippets.

@Rooster212
Created November 14, 2017 21:30
Show Gist options
  • Save Rooster212/2b524e4d828f9035295f6084944cace0 to your computer and use it in GitHub Desktop.
Save Rooster212/2b524e4d828f9035295f6084944cace0 to your computer and use it in GitHub Desktop.
The page I am using for a 404 on my server.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<title>Oops.</title>
<link href="https://fonts.googleapis.com/css?family=Quicksand|Raleway" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
}
html {
font-family: 'Quicksand', 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.main {
margin-top: 2vh;
margin-left: 20vw;
margin-right: 20vw;
margin-bottom: 0;
}
h1, h2, h3, h4 {
margin-bottom: 3vh;
}
</style>
</head>
<body>
<div class="main">
<h1>Oops.</h1>
<h2>Looks like there is nothing here.</h2>
<h4>If you think there should be something here, contact me at <a href="mailto:jamie@roos.click">jamie@roos.click</a>.</h>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment