<meta name=" " content=" " />標籤經常使用功能:javascript
<!doctype html> <html> <head> <meta charset="utf-8" /> <title>顯示在網頁的標題欄</title> </head> <body> Hello Web!` </body> </html>
<!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="keywords" content="html5,javascript,前端,全棧"/> <title>設置網頁的關鍵字</title> </head> <body> Hello Web!` </body> </html>
<!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="description" content="這是用來描述整個網頁的。"/> <title>指定網頁的描述</title> </head> <body> Hello Web!` </body> </html>
<!doctype html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="refresh" content="3; url=./cat.html"/> <title>請求的重定向(url=「能夠是相對路徑html」)</title> </head> <body> Hello Web!` </body> </html>
屬性 | 值 | 描述 |
---|---|---|
content | some_text | 定義與 http-equiv 或 name 屬性相關的元信息 |
屬性 | 值 | 描述 |
---|---|---|
http-equiv |
|
把 content 屬性關聯到 HTTP 頭部。 |
name |
|
把 content 屬性關聯到一個名稱。 |
scheme | some_text | 定義用於翻譯 content 屬性值的格式。 |