"/>
當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > html設(shè)置說明meta content

html設(shè)置說明meta content

2012/11/14 16:31:39作者:佚名來源:網(wǎng)絡(luò)

移動端

【實(shí)例介紹】

設(shè)置頁面說明

設(shè)置頁面說明也是為了便于搜索引擎的查找,它用來詳細(xì)說明網(wǎng)頁的內(nèi)容,頁面說明在網(wǎng)頁中不顯示出來。

【基本語法】

<meta name="description" content="設(shè)置頁面說明">

【語法介紹】

在該語法中,name為屬性名稱,這里設(shè)置為description,也就是將元信息屬性設(shè)置為頁面說明,在content中定義具體的描述語言。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head>

<meta name="description"content="設(shè)置頁面說明">

<title>設(shè)置頁面說明</title>

<head>

<body> </body> </html>

【代碼分析】

在代碼中,加粗部分的標(biāo)記為設(shè)置頁面的說明。

標(biāo)簽: 設(shè)置  meta content