Comment: When writing HTML5 code, I found that Chinese garbled code was displayed. I thought it was incompatible with IE10, and then changed to Firefox. Who knew it wouldn't work. After repeated research and testing, I found a good solution. Friends who have similar situations can refer to it.
I have been studying HTML5 for a few days. I have been reading the document before, but I haven't started writing it. I started writing the code last night and found that the Chinese text shows garbled code. I thought it was incompatible with IE10 and then replaced it with Firefox. But I didn't know that it would work. Finally, I tried to make a lot of trouble. When editing the web page, I not only added the sentence <meta charset=utf-8>, but also saved the file as UTF-8 when saving it. The code is as follows:<!DOCTYPE HTML>
<html>
<meta charset="utf-8">
<head>
<title>First HTML5</title>
</head>
<body>
<video controls="controls">
<source src="/i/movie.ogg" type="video/ogg">
<source src="/i/movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
Is this chaos?
</body>
</html>