關於頁面Meta屬性

2022-07-13 01:57:08 字數 953 閱讀 7756

meta標籤的組成

meta標籤共有兩個屬性,它們分別是http-equiv屬性和name屬性,不同的屬性又有不同的引數值,這些不同的引數值就實現了不同的網頁功能。

1、name屬性

name屬性主要用於描述網頁,與之對應的屬性值為content,content中的內容主要是便於搜尋引擎機械人查詢資訊和分類資訊用的。

meat標籤的name屬性語法格式是:<meta name="引數" content="具體的引數值">。

其中name屬性主要有以下幾種引數:

a、keywords(關鍵字)

舉例:<meta name ="keywords" content="science, education,culture,politics,ecnomics,relationships, entertaiment, human">

b、description(**內容描述)

舉例:<meta name="description" content="this page is about the meaning of science, education,culture.">

c、robots(機械人嚮導)

content的引數有all,none,index,noindex,follow,nofollow。預設是all。

舉例:<meta name="robots" content="none">

d、author(作者)

說明:標註網頁的作者

e、viewport設定頁面大小

width - viewport的寬度 height - viewport的高度

initial-scale - 初始的縮放比例

minimum-scale - 允許使用者縮放到的最小比例

maximum-scale - 允許使用者縮放到的最大比例

user-scalable - 使用者是否可以手動縮放

禁止頁面縮放及meta便簽常用屬性

1.width viewport的寬度 2.height viewport的高度 3.initial scale 初始的縮放比例 4.minimum scale 允許使用者縮放到的最小比例 5.maximum scale 允許使用者縮放到的最大比例 6.user scalable 使用者是否可以手動...

meta標籤常用屬性

說明 告訴搜尋引擎你網頁的關鍵字 keywords 使用方法 robots 機械人嚮導 說明 robots用來告訴搜尋機械人頁面需要或者不需要索引。content的引數有all none index noindex follow nofollow。預設是all。使用方法 all 檔案將被檢索,且頁面...

meta標籤與頁面亂碼

html中的meta標籤一般位於head標籤之間,其作用是告訴瀏覽器在訪問當前的web資源時以何種編碼方式開啟頁面。下面就是乙個例子,告訴客戶端瀏覽器以utf 8編碼方式開啟當前網頁。個人經驗 無論是在jsp還是在php中,標籤,他都是一種有效設定客戶開啟當前頁面時編碼方式的好辦法。因為有時在php...