fix(curriculum): improve charset explanation in cat photo app (#53671)

This commit is contained in:
George Drivas 2024-02-13 07:01:02 +02:00 committed by GitHub
parent 9ef60723dd
commit f754b62a7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,9 @@ You can set browser behavior by adding self-closing `meta` elements in the `head
<meta attribute="value">
```
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--