From 17898b0ffc0d249fb22ec74b3076a1c2932d534f Mon Sep 17 00:00:00 2001 From: Justin <45610768+jmirfield@users.noreply.github.com> Date: Thu, 17 Mar 2022 16:13:16 -0400 Subject: [PATCH] fix(curriculum): update meta naming inconsistencies (#45446) Fixes incorrect uses of the word `tag` to refer to an element. --- .../613297a923965e0703b64796.md | 4 ++-- .../61329b210dac0b08047fd6ab.md | 2 +- .../61329d52e5010e08d9b9d66b.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/613297a923965e0703b64796.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/613297a923965e0703b64796.md index 24446f5015..f4cc965010 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/613297a923965e0703b64796.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/613297a923965e0703b64796.md @@ -7,9 +7,9 @@ dashedName: step-2 # --description-- -You may be familiar with the `meta` tag already; it is used to specify information about the page, such as the title, description, keywords, and author. +You may be familiar with the `meta` element already; it is used to specify information about the page, such as the title, description, keywords, and author. -Give your page a `meta` tag with an appropriate `charset` value. +Give your page a `meta` element with an appropriate `charset` value. The `charset` attribute specifies the character encoding of the page, and, nowadays, `UTF-8` is the only encoding supported by most browsers. diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61329b210dac0b08047fd6ab.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61329b210dac0b08047fd6ab.md index 4352f2244c..6f3d57ce66 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61329b210dac0b08047fd6ab.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61329b210dac0b08047fd6ab.md @@ -7,7 +7,7 @@ dashedName: step-3 # --description-- -Continuing with the `meta` tags, a `viewport` definition tells the browser how to render the page. Including one betters visual accessibility on mobile, and improves _SEO_ (search engine optimisation). +Continuing with the `meta` elements, a `viewport` definition tells the browser how to render the page. Including one betters visual accessibility on mobile, and improves _SEO_ (search engine optimisation). Add a `viewport` definition with a `content` attribute detailing the `width` and `initial-scale` of the page. diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61329d52e5010e08d9b9d66b.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61329d52e5010e08d9b9d66b.md index 5e049d7c0e..4daa0898cb 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61329d52e5010e08d9b9d66b.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61329d52e5010e08d9b9d66b.md @@ -7,13 +7,13 @@ dashedName: step-4 # --description-- -Another important `meta` tag for accessibility and SEO is the `description` definition. The value of the `content` attribute is used by search engines to provide a description of your page. +Another important `meta` element for accessibility and SEO is the `description` definition. The value of the `content` attribute is used by search engines to provide a description of your page. -Add a `meta` tag with the `name` attribute set to `description`, and give it a useful `content` attribute. +Add a `meta` element with the `name` attribute set to `description`, and give it a useful `content` attribute. # --hints-- -You should add a new `meta` tag to the `head`. +You should add a new `meta` element to the `head`. ```js assert.equal(document.querySelectorAll('meta').length, 3);