Skip to content

Instantly share code, notes, and snippets.

@dopeboy
Created January 26, 2017 22:18
Show Gist options
  • Save dopeboy/a22a985f087b079aecf756b3da8c6c50 to your computer and use it in GitHub Desktop.
Save dopeboy/a22a985f087b079aecf756b3da8c6c50 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=a22a985f087b079aecf756b3da8c6c50
<!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>
#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