Created
May 20, 2020 07:16
-
-
Save ruanbekker/8cc969d0cf96f2cdc0c33a0e4f5aa87b to your computer and use it in GitHub Desktop.
Custom 404 John Travolta Page
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
<html> | |
<head> | |
<title>Page could not be found</title> | |
<link rel="stylesheet" type="text/css" href="center.css"> | |
</head> | |
<body> | |
<div><img src="https://media.giphy.com/media/A9EcBzd6t8DZe/giphy.gif"></div> | |
</body> | |
</head> |
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
html, body { | |
height: 100%; | |
margin:0; | |
padding:0; | |
} | |
div { | |
position:relative; | |
height: 100%; | |
width:100%; | |
} | |
div img { | |
position:absolute; | |
top:0; | |
left:0; | |
right:0; | |
bottom:0; | |
margin:auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment