Skip to content

Instantly share code, notes, and snippets.

@WuerfelDev
Last active April 11, 2018 15:54
Show Gist options
  • Save WuerfelDev/d951c686c5380c3a62474e9ed2b1e186 to your computer and use it in GitHub Desktop.
Save WuerfelDev/d951c686c5380c3a62474e9ed2b1e186 to your computer and use it in GitHub Desktop.
One Image: as big as possible. Lightweight.
<!DOCTYPE HTML>
<html>
<head>
<title>Title</title>
<style>
body {
margin: 0px;
height: 100%;
width: 100%;
background-color: lightgrey;
background-image: url('logo.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}
</style>
</head>
<body></body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment