> For the complete documentation index, see [llms.txt](https://docs.webmix.cc/html-and-css/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.webmix.cc/html-and-css/2.-html/2.3-wang-ye-biao-ti.md).

# 2.6 網頁標題

`<title>...</title>`

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

## 語意

網頁標題。

## 範例

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

## 其他說明

* 網頁標題很重要，會出現於**瀏覽器的分頁**上，建議一定要提供，也常出現於 Google 的搜尋列表之中。
* 網頁標題的呈現形式，也常用階層的概念，例如：

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