HTML 標籤用於宣告HTML文件的元資料。以下是屬性:
屬性 | #值 | ##描述|
---|---|---|
#author | descriptionkeywordsgeneratorrevisedothers | #屬性的名稱。|
#文字 | 定義與http-equiv或name關聯的元資訊。 | |
#content-type | expiresrefresh set-cookie | 將content屬性連接到HTTP頭。|
#文字 | 定義用於解釋content屬性值的格式。 |
<html> <head> <title>HTML meta tag</title> <meta name = "keywords" content = "HTML, meta tag, metadata" /> <meta name = "description" content = "Description of the document" /> <meta http-equiv = "refresh" content = "10" /> </head> <body style = "background-color:gray"> Document content goes here </body> </html>
以上是在HTML文件中包含元數據的詳細內容。更多資訊請關注PHP中文網其他相關文章!