Created
January 26, 2017 22:18
-
-
Save dopeboy/a22a985f087b079aecf756b3da8c6c50 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=a22a985f087b079aecf756b3da8c6c50
This file contains 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>Page Title</title> | |
</head> | |
<body id="pagebody"> | |
<h1 id="listname">My favorite foods</h1> | |
<ol> | |
<li class="food">Pizza</li> | |
<li class="food">Pie</li> | |
<li class="food">Chinese food</li> | |
</ol> | |
</body> | |
</html> |
This file contains 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
#listname { | |
color: green; | |
} | |
.food { | |
color: pink; | |
} | |
#pagebody { | |
background-color: black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment