0
How do you indicate the character set being used by an HTML5 document? How does this differ from older HTML standards?
Concerned about the difference !!
1 Antwort
+ 4
In HTML5, just put
<meta charset="UTF-8">
in the head of the page. For HTML4, you can use
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
Reference:
https://www.w3schools.com/tags/att_meta_charset.asp