Skip to content

Instantly share code, notes, and snippets.

@RCTumolac
Created October 24, 2016 22:35
Show Gist options
  • Save RCTumolac/9739cb4abb86ec2aac3a87faa59ad890 to your computer and use it in GitHub Desktop.
Save RCTumolac/9739cb4abb86ec2aac3a87faa59ad890 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=9739cb4abb86ec2aac3a87faa59ad890
<!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>
.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