主要包含了頁面是元數據css
<head>
<meta charset="utf-8">
<title>My test page</title>
</head>
複製代碼
h1 會加載顯示在頁面中html
title 是用來表示整個html文檔大體內容的元數據瀏覽器
<meta>
在 head 中能夠出現任意多個 meta 標籤。通常的 meta 標籤由 name 和 content 兩個屬 性來定義。name 表示元信息的名,content 則用於表示元信息的值。安全
元數據就是描述數據的數據,而HTML有一個「官方的」方式來爲一個文檔添加元數據—— 元素。app
<meta charset="utf-8">
<meta name="author" content="Chris Mills">
<meta name="description" content="The Mozilla Developer Network (MDN) provides information about Open Web technologies including HTML, CSS, and APIs for both Web sites and HTML5 Apps. It also documents Mozilla products, like Firefox OS.">
複製代碼
一個典型的針對移動端優化的站點包含相似下面的內容:編輯器
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
複製代碼
viewport主要有如下屬性ide
屬性 | 說明 |
---|---|
width | 頁面具體寬度,能夠取具體數值 |
height | 頁面高度,能夠取值具體的數字 |
initial-scale | 初始縮放比例。 |
minimum-scale | 最小縮放比例 |
maximum-scale | 最大縮放比例 |
user-scalable | 是否容許用戶縮放 |
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="my-css-file.css">
工具
<script src="my-js-file.js"></script>
優化