簡單來說,Bootstrap是一個前端框架,功用是方便網頁開發者快速設計,其檔案內容為CSS檔(主要)、JavaScript檔。
以下介紹其優缺點:
在網頁上嵌入Bootstrap有兩種方式,CSS檔寫在<head>
標籤內,JS檔寫在<body>
標籤內。
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="styleshee t">
<script src="https://cdn.jsdeliver.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="http://code.jquery.com/jquery.js"></script>