From f754b62a7c205bf7abda79337733117c23c2fc3c Mon Sep 17 00:00:00 2001 From: George Drivas <78447254+GiorgosDrivas@users.noreply.github.com> Date: Tue, 13 Feb 2024 07:01:02 +0200 Subject: [PATCH] fix(curriculum): improve charset explanation in cat photo app (#53671) --- .../62bb4009e3458a128ff57d5d.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/62bb4009e3458a128ff57d5d.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/62bb4009e3458a128ff57d5d.md index 95edbbb0d73..6805937113e 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/62bb4009e3458a128ff57d5d.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/62bb4009e3458a128ff57d5d.md @@ -13,7 +13,9 @@ You can set browser behavior by adding self-closing `meta` elements in the `head ``` -Tell the browser to parse the markup into multiple languages by creating a `meta` element as a child of the `head` element. Set its `charset` attribute to `UTF-8`. +Inside the `head` element, nest a `meta` element with an attribute named `charset`. Set to the value to `utf-8` which tells the browser how to encode characters for the page. + +Note that `meta` elements are self-closing. # --hints--