Created
August 18, 2015 11:10
-
-
Save rrmdn/9859b2f80b1a443588ce to your computer and use it in GitHub Desktop.
404 simple html
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>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