Skip to content

Instantly share code, notes, and snippets.

@stormsweeper
Forked from courtney-scripted/index.html
Last active October 4, 2017 17:21
Show Gist options
  • Save stormsweeper/e432be98e9c324df11ae17e55002b2e7 to your computer and use it in GitHub Desktop.
Save stormsweeper/e432be98e9c324df11ae17e55002b2e7 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=e432be98e9c324df11ae17e55002b2e7
<!DOCTYPE html>
<html>
<head>
<title>02.1 CSS Selectors Secret Note </title>
</head>
<body>
<h1>Secret Note</h1>
<ul>
<li>I may</li>
<li><h6>ha<em>ve</em></h6><h1>hid</h1><h4>den</h4><h3>the</h3>pri</li>
<li><h5>ze</h5><h2>un</h2><strong>der</strong></li>
<li><h2>nea<em>the</em></h2><h3><h1>the</h1></h3><h4>ta</h4></li>
<li><h5>ble</h5><h4>all</h4><h6>the</h6></li>
<li><h3>way</h3><h5>in</h5><h1>the</h1><h2><h3>ba</h3>ck</h2></li>
</ul>
</body>
</html>
li {
color: white;
}
h1{
color: white;
}
h2 {
color: white;
}
h3 {
color: red;
background-color: red;
}
h4 {
background-color: yellow;
color: yellow;
}
h5 {
color: white;
}
h6 {
color: blue;
background-color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment