diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json
index b93a1de494..0949a05d51 100644
--- a/seed/challenges/html5-and-css.json
+++ b/seed/challenges/html5-and-css.json
@@ -428,8 +428,12 @@
"description": [
"Create a CSS class called red-text
and apply it to your h2
element.",
"Classes are reusable styles that can be added to HTML elements.",
- "Here's the anatomy of a CSS class:",
- "
",
+ "Here's an example CSS class declaration:",
+ "<style>
",
+ " .blue-text {
",
+ " color: blue;
",
+ " }
",
+ "</style>
",
"You can see that we've created a CSS class called blue-text
within the <style>
tag.",
"You can apply a class to an HTML element like this: <h2 class=\"blue-text\">CatPhotoApp</h2>
.",
"Note that in your CSS style
element, classes should start with a period. In your HTML elements' class declarations, classes shouldn't start with a period.",
@@ -1056,7 +1060,7 @@
"description": [
"a
elements, also known as anchor
elements, are used to link to content outside of the current page.",
"Here's a diagram of an a
element. In this case, the a
element is used in the middle of a paragraph element, which means the link will appear in the middle of a sentence.",
- "
",
+ "
",
"Here's an example: <p>Here's a <a href=\"http://freecodecamp.com\"> link to Free Code Camp</a> for you to follow.</p>
.",
"Create an a
element that links to http://catphotoapp.com
and has \"cat photos\" as its anchor text
."
],
@@ -1126,7 +1130,7 @@
"difficulty": 1.23,
"description": [
"Again, here's a diagram of an a
element for your reference:",
- "
",
+ "
",
"Here's an example: <p>Here's a <a href=\"http://freecodecamp.com\"> link to Free Code Camp</a> for you to follow.</p>
.",
"Nesting
just means putting one element inside of another element.",
"Now nest your a
element within a new p
element so that the surrounding paragraph says \"click here for cat photos\", but where only \"cat photos\" is a link, and the rest of the text is rest is plain text."