Last active
August 8, 2022 14:35
-
-
Save Phlow/8adc435ac861f3ac7edf39c2d1c30dae to your computer and use it in GitHub Desktop.
Waiting Website – Waiting at the end of the internet with an image covering the whole viewport #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"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Hallo!</title> | |
<style> | |
body { | |
background: #000; | |
background: url(https://phlow.github.io/static/waiting.gif) no-repeat center center fixed; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
} | |
</style> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment