在HTML中引入Bootstrap组件,通常需要先引入Bootstrap的CSS和JavaScript文件。以下是一个简单的HTML模板,展示了如何引入Bootstrap的CDN链接:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap Example</title>
<!-- 引入Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Bootstrap Component Example</h1>
<button type="button" class="btn btn-primary">Primary Button</button>
<!-- 更多的Bootstrap组件可以在这里使用 -->
</div>
<!-- 引入jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<!-- 引入Popper.js -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<!-- 引入Bootstrap JavaScript -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>
在这个例子中,我们通过<link>
标签引入了Bootstrap的CSS样式,并在<body>
结束标签之前通过<script>
标签引入了jQuery、Popper.js和Bootstrap的JavaScript。这样就可以在页面中使用Bootstrap提供的各种组件,如按钮(button)等。