diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-grid-by-building-a-magazine/61437d575fb98f57fa8f7f36.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-grid-by-building-a-magazine/61437d575fb98f57fa8f7f36.md index 0c372dcbfab..380660bfae5 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-grid-by-building-a-magazine/61437d575fb98f57fa8f7f36.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-grid-by-building-a-magazine/61437d575fb98f57fa8f7f36.md @@ -9,7 +9,7 @@ dashedName: step-1 Begin with your standard HTML boilerplate. Add a `DOCTYPE` declaration, an `html` element, a `head` element, and a `body` element. -Add a `meta` tag with the appropriate `charset` and a `meta` tag for mobile responsiveness within the `head` element. +Add a `` tag with the appropriate `charset` and a `` tag for mobile responsiveness within the `head` element. # --hints-- @@ -55,25 +55,25 @@ Your `DOCTYPE` declaration should be at the beginning of your HTML. assert(__helpers.removeHtmlComments(code).match(/^\s*/i)); ``` -You should have an opening `head` tag. +You should have an opening `` tag. ```js assert(code.match(//i)); ``` -You should have a closing `head` tag. +You should have a closing `` tag. ```js assert(code.match(/<\/head\s*>/i)); ``` -You should have an opening `body` tag. +You should have an opening `` tag. ```js assert(code.match(//i)); ``` -You should have a closing `body` tag. +You should have a closing `` tag. ```js assert(code.match(/<\/body\s*>/i));