Created
October 24, 2016 22:35
-
-
Save RCTumolac/9739cb4abb86ec2aac3a87faa59ad890 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=9739cb4abb86ec2aac3a87faa59ad890
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>No Name</title> | |
</head> | |
<body> | |
<h2 class = "A">This line should have a green background</h2> | |
<p class = "A">This line should also have a green background</p> | |
<p id = "a">This line should have "Comic Sans MS" font-family</p> | |
<hr> | |
<h2 class = "B">This line should have blue background</h2> | |
<p class = "B" id = "b">This line should have blue background and an italic font-style too</p> | |
<hr> | |
<p id = "c">The words should be in red!</p> | |
</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
.A { | |
background-color: green; | |
} | |
#a { | |
font-family: Comic Sans MS; | |
} | |
.B { | |
background-color: blue; | |
} | |
#b { | |
font-style: italic; | |
} | |
#c { | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment