正文标题 ‹h1› - ‹h6›

Exisi 2020-06-02 11:04:11
Categories: Tags:

属性

描述

align

  • left
  • center
  • right
  • justify

不推荐使用。请使用样式替代它。

规定标题中文本的排列。

实例

<!DOCTYPE html>

<html lang="en">

<head>

<title>网页的标题</title>

</head>

 

<body>

<h1>This is heading 1</h1>

<h2>This is heading 2</h2>

<h3>This is heading 3</h3>

<h4>This is heading 4</h4>

<h5>This is heading 5</h5>

<h6>This is heading 6</h6>

</body>

 

</html>

 

 

来自 <https://www.w3school.com.cn/tags/tag_hn.asp>