From 64dacdbf79512f556b0c574c58a9c687a42bc092 Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Sun, 2 Oct 2016 21:07:03 -0700 Subject: [PATCH] Capitalize the word "HTML" for consistency --- .../01-front-end-development-certification/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 3967212577..deecceb88c 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 @@ -711,7 +711,7 @@ "Remember that you can attach classes to HTML elements by using class=\"your-class-here\" within the relevant element's opening tag.", "Remember that CSS class selectors require a period at the beginning like this:", "
.blue-text {
  color: blue;
}
", - "But remember you don't need to use a period when attaching classes to an html element:", + "But remember you don't need to use a period when attaching classes to an HTML element:", "<h2 class=\"blue-text\">CatPhotoApp</h2>", "Apply the red-text class to your h2 and p elements." ],