diff --git a/seed/challenges/01-responsive-web-design/basic-css.json b/seed/challenges/01-responsive-web-design/basic-css.json
index 50551ca39c..4ca05c3948 100644
--- a/seed/challenges/01-responsive-web-design/basic-css.json
+++ b/seed/challenges/01-responsive-web-design/basic-css.json
@@ -812,7 +812,8 @@
"For example, if you wanted an element to use the Helvetica
font, but also degrade to the Sans-Serif
font when Helvetica
wasn't available, you could use this CSS style:",
"
p {", "
font-family: Helvetica, Sans-Serif;
}
Lobster
font isn't available. You'll also have to make sure the heading font gets degraded to Monospace
. Some CSS changes will be necessary for this.",
+ "To begin with, apply the Monospace
font to the h2
element, so that it now has two fonts - Lobster
and Monospace
.",
+ "In the last challenge, you imported the Lobster
font using the link
tag. Now comment out that import of the Lobster
font from Google Fonts so that it isn't available anymore. Notice how your h2
element degrades to the Monospace
font.",
"Note