Created
August 28, 2017 20:09
-
-
Save courtney-scripted/f7d16ab083f0ecb86329246f48115d45 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=f7d16ab083f0ecb86329246f48115d45
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>02.1 CSS Selectors Ransom Note </title> | |
</head> | |
<body> | |
<h1>Ransom Note</h1> | |
<ul> | |
<li>I may</li> | |
<li><h6>have</h6><h1>hid</h1><h4>den</h4><h3>the</h3>pri</li> | |
<li><h5>ze</h5><h2>un</h2>der</li> | |
<li><h2>neathe</h2><h3><h1>the</h1></h3><h4>4th</h4></li> | |
<li><h5>ch</h5><h4>air</h4><h6>from</h6></li> | |
<li><h3>the</h3><h5>back</h5><h1>right</h1></li> | |
</ul> | |
</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
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