Skip to content

Instantly share code, notes, and snippets.

@danapplegate
Created October 27, 2016 14:47
Show Gist options
  • Save danapplegate/8922fe1758d1a91426a7026d4c13a50b to your computer and use it in GitHub Desktop.
Save danapplegate/8922fe1758d1a91426a7026d4c13a50b to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=8922fe1758d1a91426a7026d4c13a50b
<!DOCTYPE html>
<html>
<head>
<title>Dan's Zombie Spectacular</title>
</head>
<body>
<h1>Welcome to Dan's Zombie Spectacular!</h1>
<div class="zombie-pen" id="business-pen">
</div>
<div class="zombie-pen" id="professor-pen">
</div>
</body>
</html>
body {
background-color: chocolate;
color: white;
}
.zombie-pen {
width: 250px;
height: 250px;
background-color: green;
}
#business-pen {
background-image: url("http://i.imgur.com/u2QG9Ia.gif");
}
#professor-pen {
background-color: blue;
background-image: url("http://i.imgur.com/oFpPJ9q.gif");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment