可以将HTML标题或HTML h标签定义为要在网页上显示的标题或副标题。当你将文本放在标题标签<h1> ……… </ h1>内时, 它在浏览器中以粗体显示, 并且文本的大小取决于标题的数量。
从<h1>到<h6>标签定义了六个不同的HTML标题, 从最高级别h1(主标题)到最低级别h6(最重要的标题)。
h1是最大的标题标签, h6是最小的标题标签。因此, h1用于最重要的标题, h6用于最不重要的标题。
HTML中的标题可帮助搜索引擎理解网页并为其编制索引。
注意:网页整个内容的主要关键字应通过h1标题标签显示。
请参阅以下示例:
<h1>Heading no. 1</h1>
<h2>Heading no. 2</h2>
<h3>Heading no. 3</h3>
<h4>Heading no. 4</h4>
<h5>Heading no. 5</h5>
<h6>Heading no. 6</h6>
立即测试
输出:
Heading no. 1
Heading no. 2
Heading no. 3
Heading no. 4
Heading no. 5
Heading no. 6
标题元素(h1 …. h6)仅应用于标题。它们不应仅用于使文本加粗或变大。
- HTML标题也可以与嵌套元素一起使用。以下是显示标题元素使用方式的不同代码。
例:
<!DOCTYPE html>
<html>
<head>
<title>Heading elements</title>
</head>
<body>
<h1>This is main heading of page. </h1>
<p>h1 is the most important heading, which is used to display the keyword of page </p>
<h2>This is first sub-heading</h2>
<p>h2 describes the first sub heading of page. </p>
<h3>This is Second sub-heading</h3>
<p>h3 describes the second sub heading of page.</p>
<p>We can use h1 to h6 tag to use the different sub-heading with their paragraphs if
required.
</p>
</body>
</html>
输出:
支持的浏览器
Element | Chrome | IE | Firefox | Opera | Safari |
<h1>至<h6> | Yes | Yes | Yes | Yes | Yes |