用boostrap布局加各种图形
时间: 2024-05-13 15:17:37 浏览: 103
Bootstrap 是一个非常流行的前端框架,它提供了丰富的 CSS 样式和 JavaScript 插件,可以帮助我们快速地构建出漂亮的网页界面。下面是一个基本的 Bootstrap 布局:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bootstrap Example</title>
<!-- 引入 Bootstrap 样式表 -->
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
<h1>Hello, World!</h1>
<p>This is a Bootstrap example.</p>
</div>
<div class="col-md-6">
<img src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/assets/brand/bootstrap-solid.svg" alt="Bootstrap" width="200">
</div>
</div>
</div>
<!-- 引入 Bootstrap JavaScript 插件 -->
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/popper.js/1.12.5/umd/popper.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>
```
这个布局将网页分为两列,左边一列是一个标题和一段文字,右边一列是一个图片。我们使用了 Bootstrap 提供的 `container-fluid` 容器和 `row` 行来组织布局,使用了 `col-md-6` 列来设置每一列的宽度。图片使用了 Bootstrap 提供的 `img` 标签。
如果想要加入其它图形,可以使用 Bootstrap 提供的图标库 Font Awesome。我们可以在 HTML 文件中引入 Font Awesome 的 CSS 样式表,然后使用 Font Awesome 提供的图标。比如,下面是一个带有图标的按钮:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bootstrap Example</title>
<!-- 引入 Bootstrap 样式表和 Font Awesome 样式表 -->
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container-fluid">
<button class="btn btn-primary">
<i class="fa fa-search"></i> Search
</button>
</div>
<!-- 引入 Bootstrap JavaScript 插件 -->
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/popper.js/1.12.5/umd/popper.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>
```
这个按钮使用了 Bootstrap 提供的 `btn` 样式和 `btn-primary` 样式来设置按钮的外观,使用了 Font Awesome 提供的 `fa` 和 `fa-search` 样式来设置图标。
阅读全文