WEB1046 - 没有在 <head> 标记节内定义 <title> 标记

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