HTML5 <head> 标签用于定义文档的头部,它包含了一些关于文档的元信息和链接到外部资源的引用。以下是一些常见的在<head>标签中使用的元素:

1. <title>:定义文档的标题,显示在浏览器的标题栏或标签页上。
<head>
  <title>页面标题</title>
</head>

2. <meta charset="UTF-8">:指定文档的字符编码,通常使用UTF-8。
<head>
  <meta charset="UTF-8">
</head>

3. <meta name="viewport" content="width=device-width, initial-scale=1.0">:用于响应式设计,确保页面在移动设备上正确显示。
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>

4. <link>:用于引入外部资源,比如样式表(CSS)和图标。
<head>
  <link rel="stylesheet" href="styles.css">
  <link rel="icon" href="favicon.ico" type="image/x-icon">
</head>

5. <style>:内部样式表,用于定义文档的样式。
<head>
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f0f0f0;
    }
  </style>
</head>

这些是常见的<head>标签中使用的元素,它们有助于优化文档的结构、样式和显示。


转载请注明出处:http://www.zyzy.cn/article/detail/3735/HTML5