用bootstrap 5框架写一个车辆系统
时间: 2024-04-07 11:33:37 浏览: 92
汽车系统(VB编写)
当然可以!下面是一个使用Bootstrap 5框架编写的简单车辆系统的示例代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css">
<title>车辆系统</title>
</head>
<body>
<div class="container">
<h1>车辆系统</h1>
<form>
<div class="mb-3">
<label for="make" class="form-label">制造商:</label>
<input type="text" class="form-control" id="make" placeholder="请输入制造商">
</div>
<div class="mb-3">
<label for="model" class="form-label">型号:</label>
<input type="text" class="form-control" id="model" placeholder="请输入型号">
</div>
<div class="mb-3">
<label for="year" class="form-label">年份:</label>
<input type="number" class="form-control" id="year" placeholder="请输入年份">
</div>
<div class="mb-3">
<label for="color" class="form-label">颜色:</label>
<input type="text" class="form-control" id="color" placeholder="请输入颜色">
</div>
<button type="submit" class="btn btn-primary">添加车辆</button>
</form>
<table class="table mt-4">
<thead>
<tr>
<th>制造商</th>
<th>型号</th>
<th>年份</th>
<th>颜色</th>
</tr>
</thead>
<tbody>
<tr>
<td>Toyota</td>
<td>Camry</td>
<td>2021</td>
<td>白色</td>
</tr>
<tr>
<td>Ford</td>
<td>Mustang</td>
<td>2022</td>
<td>红色</td>
</tr>
</tbody>
</table>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
```
这个示例展示了一个简单的车辆系统,包含一个表单用于添加车辆信息,并在下方显示已添加的车辆信息的表格。你可以根据实际需求进行修改和扩展。注意,这里使用了Bootstrap 5的CDN链接来引入样式和脚本。
阅读全文