Skip to content

Instantly share code, notes, and snippets.

@byquanton
Created December 6, 2018 10:04
Show Gist options
  • Save byquanton/ef83060180e117a8a93e40d83589ccad to your computer and use it in GitHub Desktop.
Save byquanton/ef83060180e117a8a93e40d83589ccad to your computer and use it in GitHub Desktop.
Funny Pictures
<html>
<head>
<title> © Unsplash | Alle 2 Sekunden gibt es ein Neues Bild </title>
<style>
body {
background-image: url("https://picsum.photos/1280/1024/?random");
background-color: #cccccc;
}
* {
cursor: none;
}
</style>
</head>
<body>
<h6 style="background-color:white;"> © Unsplash | Alle 2 Sekunden gibt es ein Neues Bild </h6>
<script>
setInterval(function(){location.reload();
},2000)
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment