Created
November 14, 2017 21:30
-
-
Save Rooster212/2b524e4d828f9035295f6084944cace0 to your computer and use it in GitHub Desktop.
The page I am using for a 404 on my server.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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:[email protected]">[email protected]</a>.</h> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment