WEB1046 - <title> 標籤不是在 <head> 標籤區段內定義

<title> 標籤應該是 <head> 標籤的子項。

說明

搜尋引擎無法分析在 <head> 標籤外部定義之 <title> 標籤的內容。

詳細資料

<title> 標籤應該位於網頁的 <head> 標籤區段內,而且通常放在 <meta name="keywords"> 標籤和 <meta name="description"> 標籤之前。

範例

以下是格式正確的 <title> 標籤範例,其中 <meta name="description"><meta name="keywords"> 標籤均位於 <head> 標籤區段中。

<head>
    <title>Contact Us</title>
    <meta name="description">Contact information for Proseware, Inc., including addresses, phone numbers, and email</meta>
    <meta name="keywords" content="Proseware,Proseware applications,Proseware utilities,Proseware tools,Proseware server tools"/>
</head>