这一节,我们来学习一下html的文档标题
实例代码:
<!doctype html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="zh-cn" />
<title>这是一个文档标题</title>
</head>
<html>
<body>
<p>这个文本段落会显示</p>
</body>
</html>
运行效果:
title:定义一个html网页的标题。
http-equiv 属性提供了 content属性的信息/值的 HTTP 头。
http-equiv 属性可用于模拟一个 HTTP 响应头。
评论