Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML <title> 标签


示例

为您的 HTML 文档定义一个标题

<!DOCTYPE html>
<html>
<head>
  <title>HTML 元素参考</title>
</head>
<body>

<h1>这是一个标题</h1>
<p>这是一个段落。</p>

</body>
</html>
自己尝试 »

定义和用法

The <title> 标签定义文档的标题。标题必须是纯文本,它将显示在浏览器的标题栏或页面的选项卡中。

The <title> 标签在 HTML 文档中是必需的!

页面标题的内容对于搜索引擎优化 (SEO) 非常重要!页面标题由搜索引擎算法用来决定在搜索结果中列出页面的顺序。

The <title> 元素

  • 在浏览器工具栏中定义一个标题
  • 在将页面添加到收藏夹时提供页面的标题
  • 在搜索引擎结果中显示页面的标题

以下是一些创建良好标题的提示

  • 使用更长、更具描述性的标题(避免使用一两个词的标题)
  • 搜索引擎将显示大约 50-60 个字符的标题,因此请尝试不要使用超过该长度的标题
  • 不要仅仅使用单词列表作为标题(这可能会降低页面在搜索结果中的排名)

因此,请尝试使标题尽可能准确和有意义!

注意:您在一个 HTML 文档中不能拥有超过一个 <title> 元素。



浏览器支持

元素
<title>

全局属性

The <title> 标签还支持 HTML 中的全局属性


相关页面

HTML 教程:HTML 头部

HTML DOM 参考:标题对象


默认 CSS 设置

大多数浏览器将使用以下默认值显示 <title> 元素

title {
  display: none;
}


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.