From 106977e42813d15eccd7370da7113657baeab50c Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Mon, 29 Aug 2016 22:37:19 -0700 Subject: [PATCH] Clarify on how to import and use a Google font --- .../html5-and-css.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/seed/challenges/01-front-end-development-certification/html5-and-css.json b/seed/challenges/01-front-end-development-certification/html5-and-css.json index c5c0b55fd5..f127612976 100644 --- a/seed/challenges/01-front-end-development-certification/html5-and-css.json +++ b/seed/challenges/01-front-end-development-certification/html5-and-css.json @@ -935,8 +935,9 @@ "First, you'll need to make a call to Google to grab the Lobster font and load it into your HTML.", "Copy the following code snippet and paste it into the top of your code editor:", "<link href=\"https://fonts.googleapis.com/css?family=Lobster\" rel=\"stylesheet\" type=\"text/css\">", - "Now you can set Lobster as a font-family value on your h2 element.", - "Apply the font-family of Lobster to your h2 element." + "Remember, before you can apply styles, like a new font, to an element, you'll need to create a CSS rule.", + "
h2 {
font-family: Sans-serif;
}
", + "Create a CSS rule for the font-family of Lobster and apply this new font to your h2 element." ], "challengeSeed": [ "