qq__9401
2017-06-29 16:31
<!DOCTYPE HTML>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<head>
<title>认识head标签</title>
</head>
<body>
<h1>HELLO world </h1>
</body>
</html>
<!DOCTYPE HTML>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<head>
<title>认识head标签</title>
</head>
<body>
<h1>HELLO world </h1>
</body>
</html>
提示我标签错怎么回事
在w3school教程中提到:(http://www.w3school.com.cn/tags/tag_meta.asp)
<meta> 标签永远位于 head 元素内部
meta放在head里面
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">这个标签在
<head>标签的里面写
<!DOCTYPE HTML>
<html>
<head>
<!--放错位置了-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>认识head标签</title>
</head>
<body>
<h1>HELLO world </h1>
</body>
</html>
没有错误吧 你干嘛把代码复制
初识HTML(5)+CSS(3)-升级版
1225806 学习 · 18234 问题
相似问题