1. 程式人生 > >一些網站的meta標籤的作用

一些網站的meta標籤的作用

轉載:https://www.cnblogs.com/Lily-nercel/p/6693293.html

<!DOCTYPE html>
<html lang="en">

<head>
<!-- 編碼格式 -->
<meta charset="UTF-8">
<title></title>
<!-- 作者 -->
<meta name="author" content="author">
<!-- 網頁描述 -->
<meta name="description" content="
hello"> <!-- 關鍵字使用","分隔 --> <meta name="keywords" content="a,b,c"> <!-- 禁止瀏覽器從本地機的快取中調閱頁面內容 --> <meta http-equiv="Pragma" content="no-cache"> <!-- 用來防止別人在框架裡呼叫你的頁面 --> <meta http-equiv="Window-target" content="_top"> <!-- content的引數有all,none,index,noindex,follow,nofollow,預設是all -->SEO爬蟲設定
<meta name="robots" content="none"> <!-- 收藏圖示 --> <link rel="Shortcut Icon" href="favicon.ico"> <!-- 網頁不會被快取 --> <meta http-equiv="Cache-Control" content="no-cache, must-revalidate"> <!-- 解決部分相容性問題,如果安裝了GCF,則使用GCF來渲染頁面,如果未安裝GCF,則使用最高版本的IE核心進行渲染。 --> <meta http-equiv="
X-UA-Compatible" content="IE=edge,chrome=1"> <!-- 頁面按原比例顯示 --> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="plugin/bootstrap-3.3.0/css/bootstrap.min.css"> <!--[if lt IE 9]> <script src="https://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.js"></script> <![endif]--> </head> <body> <script src="plugin/jquery/jquery-1.11.2.min.js"></script> </body> </html>