Created
October 27, 2016 14:47
-
-
Save danapplegate/8922fe1758d1a91426a7026d4c13a50b to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=8922fe1758d1a91426a7026d4c13a50b
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> | |
<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> |
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
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