Skip to content

Instantly share code, notes, and snippets.

@rrmdn
Created August 18, 2015 11:10
Show Gist options
  • Select an option

  • Save rrmdn/9859b2f80b1a443588ce to your computer and use it in GitHub Desktop.

Select an option

Save rrmdn/9859b2f80b1a443588ce to your computer and use it in GitHub Desktop.
404 simple html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Page not found</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
font-family: 'Avenir' ,'Segoe UI', 'Helvetica Neue', Helvetica, Arial;
}
.app {
width: 100%;
height: 100%;
}
.light {
text-align: center;
font-weight: 300;
font-size: 30px;
}
h3 {
text-align: center;
font-weight: 300;
font-size: 200px;
}
</style>
</head>
<body>
<div id="app">
<h3>404 ;=(</h3>
<p class="light">Ups.. the page you are looking for is not available</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment