Bootstrap 网页的基本结构
範例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script>
<title>Bootstrap網頁基本結構</title>
</head>
<body>
<h1>Hello,Bootstrap!</h1>
</body>
</html>
6: ? width=device-width: 将网页宽度设为行动装置的荧幕宽度。 ? initial-scale=1.0: 缩放比,此处为1:1。
10: 透过CDN参考Bootstrap核心CSS檔案。 12: 透过CDN参考Bootstrap核心JavaScript檔案(这里已包含Popper)。
結果
参考
Bootstrap官方网站
|