head元素
head里面一般是一些元素据,即描述数据的数据
<head>
<title>hello worold</title>
<!-- 网站标题 -->
<meta charset="utf-8">
<!-- 设置编码格式 -->
<style>
div {
background: red;
}
</style>
<!-- 设置css样式 -->
<link rel="stylesheet" href="">
<!-- 引入外部css样式 -->
<link rel="icon" href="">
<!-- 设置网站图标 -->
</head>