<html>
<!-- 头信息的作用
1. 可以设置网页的标题。
2. 可以通知浏览使用指定的码表解释html页面.
-->
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<title>这个是我的第一个网页</title>
<meta name="keywords" content="关键字1,关键字2,关键字3,关键字4"/>
<!--一个网页的关键字最好是3-4个。 seo(搜索引擎优化) -->
</head> <!-- 网页的内容应该写在body标签体内的。 -->
<body>
这个是我的第一个网页看到了
</body>
</html>