<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap 示例</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://www.w3schools.cn/lib/bootstrap/5.1.3/css/bootstrap.min.css" rel="stylesheet">
<script src="https://www.w3schools.cn/lib/bootstrap/5.1.3/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-3">
<h1>较小的次要文本</h1>
<p>small 元素(和 .small 类)用于在任何标题中创建较小的次要文本:</p>
<h1>h1 标题 <small>次要文本</small></h1>
<h2>h2 标题 <small>次要文本</small></h2>
<h3>h3 标题 <small>次要文本</small></h3>
<h4>h4 标题 <small>次要文本</small></h4>
<h5>h5 标题 <small>次要文本</small></h5>
<h6>h6 标题 <small>次要文本</small></h6>
</div>
</body>
</html>