diff --git a/challenges/01-responsive-web-design/applied-visual-design.json b/challenges/01-responsive-web-design/applied-visual-design.json index dc9dcda65d..cc35c86d2f 100644 --- a/challenges/01-responsive-web-design/applied-visual-design.json +++ b/challenges/01-responsive-web-design/applied-visual-design.json @@ -462,24 +462,23 @@ }, { "id": "587d781b367417b2b2512aba", - "title": "Use the del Tag to Strikethrough Text", + "title": "Use the s Tag to Strikethrough Text", "description": [ - "To strikethrough text, which is when a horizontal line cuts across the characters, you can use the del tag. It shows that a section of text is no longer valid. With the del tag, the browser applies the CSS of text-decoration: line-through; to the element.", + "To strikethrough text, which is when a horizontal line cuts across the characters, you can use the s tag. It shows that a section of text is no longer valid. With the s tag, the browser applies the CSS of text-decoration: line-through; to the element.", "
", - "Wrap the del tag around \"Google\" inside the h4 tag and then add the word Alphabet beside it, which should not have the strikethrough formatting." + "Wrap the s tag around \"Google\" inside the h4 tag and then add the word Alphabet beside it, which should not have the strikethrough formatting." ], "tests": [ { - "text": - "Your code should add one del tag to the markup.", + "text": "Your code should add one s tag to the markup.", "testString": - "assert($('del').length == 1, 'Your code should add one del tag to the markup.');" + "assert($('s').length == 1, 'Your code should add one s tag to the markup.');" }, { "text": - "A del tag should wrap around the Google text in the h4 tag. It should not contain the word Alphabet.", + "A s tag should wrap around the Google text in the h4 tag. It should not contain the word Alphabet.", "testString": - "assert($('del').text().match(/Google/gi) && !$('del').text().match(/Alphabet/gi), 'A del tag should wrap around the Google text in the h4 tag. It should not contain the word Alphabet.');" + "assert($('s').text().match(/Google/gi) && !$('s').text().match(/Alphabet/gi), 'A s tag should wrap around the Google text in the h4 tag. It should not contain the word Alphabet.');" }, { "text": @@ -605,7 +604,7 @@ "
", "
", "
", - "

GoogleAlphabet

", + "

GoogleAlphabet

", " ", "

Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

", "
",