Skip to content

Instantly share code, notes, and snippets.

@olivopablo
Last active September 7, 2021 03:13
Show Gist options
  • Save olivopablo/cac14c7a465667593061ace4ba66c611 to your computer and use it in GitHub Desktop.
Save olivopablo/cac14c7a465667593061ace4ba66c611 to your computer and use it in GitHub Desktop.
Minimal coming soon html full image background
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Coming Soon!</title>
<style>
#bg {
position: fixed;
top: 0;
left: 0;
/* Preserve aspet ratio */
width: 100%;
height: auto;
}
</style>
</head>
<body>
<img src="bg.gif" id="bg" alt="">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment