__x__(12)0906第三天__ 標籤

<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>

       

  • 請求的重定向(url=「能夠是相對路徑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-type
  • expires
  • refresh
  • set-cookie
把 content 屬性關聯到 HTTP 頭部。
name
  • author
  • description
  • keywords
  • generator
  • revised
  • others
把 content 屬性關聯到一個名稱。
scheme some_text 定義用於翻譯 content 屬性值的格式。
相關文章
相關標籤/搜索