diff --git a/challenges/01-responsive-web-design/basic-css.json b/challenges/01-responsive-web-design/basic-css.json index 82e14a853c..6876eaf14f 100644 --- a/challenges/01-responsive-web-design/basic-css.json +++ b/challenges/01-responsive-web-design/basic-css.json @@ -812,8 +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;
}
", "
", - "Now comment out your call to Google Fonts, so that the Lobster font isn't available. Notice how it degrades to the Monospace font.", - "Note
If you have the Lobster font installed on your computer, you wont see the degradation because your browser is able to find the font." + "Now comment out your call to Google Fonts, so that the 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.", + "Note
If you have the Lobster font installed on your computer, you won't see the degradation because your browser is able to find the font." ], "challengeSeed": [ "", @@ -823,7 +823,7 @@ " }", "", " h2 {", - " font-family: Lobster, Monospace;", + " font-family: Lobster;", " }", "", " p {",