标签:ext class inf targe doctype 菜鸟 显示 char head
参考http://www.runoob.com/html/html-editors.html
HTML代码如下
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>菜鸟教程(runoob.com)</title> 6 </head> 7 <body> 8 9 <h1>我的第一个标题</h1> 10 11 <p>我的第一个段落。</p> 12 13 </body> 14 </html>
在记事本或写字板上复制代码,保存后缀为.html
双击html文件或者使用浏览器打开
出现乱码
解决方案:
<meta charset="utf-8">
改成
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
保存再次运行即可显示正常
标签:ext class inf targe doctype 菜鸟 显示 char head
原文地址:https://www.cnblogs.com/kunkunZeng/p/9071299.html