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 226158a26d..0ddbf5854b 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
@@ -4558,7 +4558,7 @@
"description": [
"So we've proven that id declarations override class declarations, regardless of where they are declared in your style
element CSS.",
"There are other ways that you can override CSS. Do you remember inline styles?",
- "Use an in-line style
to try to make our h1
element white. Remember, in line styles look like this:",
+ "Use an inline style
to try to make our h1
element white. Remember, in line styles look like this:",
"<h1 style=\"color: green\">
",
"Leave the blue-text
and pink-text
classes on your h1
element."
],
@@ -4596,7 +4596,7 @@
"description": [
"Wir haben also gesehen dass Id Deklarationen die von Klassen überschreiben, egal wo sie in deinem style
Element CSS stehen.",
"Es gibt noch andere Wege CSS zu überschreiben. Erinnerst du dich an Inline Styles?",
- "Benutze in-line style
um dein h1
Element weiß zu machen. Vergiss nicht, Inline Styles sehen so aus:",
+ "Benutze inline style
um dein h1
Element weiß zu machen. Vergiss nicht, Inline Styles sehen so aus:",
"<h1 style=\"color: green\">
",
"Lasse die blue-text
und pink-text
Klassen auf deinem h1
Element."
]
@@ -4637,10 +4637,10 @@
"id": "bad87fee1348bd9aedf07756",
"title": "Override All Other Styles by using Important",
"description": [
- "Yay! We just proved that in-line styles will override all the CSS declarations in your style
element.",
+ "Yay! We just proved that inline styles will override all the CSS declarations in your style
element.",
"But wait. There's one last way to override CSS. This is the most powerful method of all. But before we do it, let's talk about why you would ever want to override CSS.",
"In many situations, you will use CSS libraries. These may accidentally override your own CSS. So when you absolutely need to be sure that an element has specific CSS, you can use !important
",
- "Let's go all the way back to our pink-text
class declaration. Remember that our pink-text
class was overridden by subsequent class declarations, id declarations, and in-line styles.",
+ "Let's go all the way back to our pink-text
class declaration. Remember that our pink-text
class was overridden by subsequent class declarations, id declarations, and inline styles.",
"Let's add the keyword !important
to your pink-text element's color declaration to make 100% sure that your h1
element will be pink.",
"An example of how to do this is:",
"color: red !important;
"