+ 3
What is meta charset
what does ut do? what are its uses? need help in html 5. working on a code
2 Respuestas
+ 3
meta means metadata ( data about data) of a webpage
charset means the character set used in the webpage
<meta charset="UTF-8" />
Here meta tag is the container for metadata. The metadata contained in this tag is the character set used in the page, so charset attribute is used. The value of charset is UTF-8, so it will be used for all characters within this page
+ 3
thank you for the explenstion!