From e8514dd01ff28d2ea6240cf011d55c111e78da7e Mon Sep 17 00:00:00 2001 From: Terra Incognita Date: Thu, 3 Dec 2015 13:33:10 -0800 Subject: [PATCH] fix typo --- challenges/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json index e99acf7840..8fa76f52a2 100644 --- a/challenges/html5-and-css.json +++ b/challenges/html5-and-css.json @@ -3770,7 +3770,7 @@ "title": "Use Hex Code for Specific Colors", "description": [ "Did you know there are other ways to represent colors in CSS? One of these ways is called hexadecimal code, or hex code for short.", - "The word Hexademical can be broken down into the words hexa and decimal. You may be familiar with decimal being a number like 0.10 or 0.333. In CSS, decimal can be thought of as the numbers zero through nine, giving a total of ten numbers. The word hexa, as you might guess, means six. In CSS, this refers to the letters A, B, C, D, E, and F. Putting these together, each place value of a hexadecimal can be a number 0 to 9 or A through F, giving us a total of 16 possible values. You can find more information about hexadecimal numbers here", + "The word Hexadecimal can be broken down into the words hexa and decimal. You may be familiar with decimal being a number like 0.10 or 0.333. In CSS, decimal can be thought of as the numbers zero through nine, giving a total of ten numbers. The word hexa, as you might guess, means six. In CSS, this refers to the letters A, B, C, D, E, and F. Putting these together, each place value of a hexadecimal can be a number 0 to 9 or A through F, giving us a total of 16 possible values. You can find more information about hexadecimal numbers here", "With CSS, we use 6 hexadecimal numbers to represent colors. For example, #000000 is the lowest possible value, and it represents the color black.", "Replace the word black in our body element's background-color with its hex code representation, #000000 " ],