2.6 網頁標題

<title>...</title>

需放在 <head>...</head> 區段之中。

語意

網頁標題。

範例

<head>
  <title>這是網頁標題</title>
</head>

其他說明

  • 網頁標題很重要,會出現於瀏覽器的分頁上,建議一定要提供,也常出現於 Google 的搜尋列表之中。

  • 網頁標題的呈現形式,也常用階層的概念,例如:

<head>
  <title>商品名稱 | 商品分類 | 品牌名稱</title>
</head>

Last updated