📅  最后修改于: 2023-12-03 14:39:33.187000             🧑  作者: Mango
Bootstrap是一款由Twitter开发的前端框架,它可以快速帮助开发者构建响应式布局、移动优先的Web项目。
使用Bootstrap,可以通过下载它的CSS和JavaScript文件,也可以通过CDN引入它的文件。下面是引入Bootstrap的示例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bootstrap Demo</title>
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</head>
<body>
<h1>Hello, Bootstrap!</h1>
</body>
</html>
下面是一个使用Bootstrap构建的简单登录页面的示例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Login Page</title>
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.0.0/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1 class="mt-5">Login Form</h1>
<form class="mt-5">
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" id="username" placeholder="Enter username">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" placeholder="Password">
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
</div>
<script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</body>
</html>
Bootstrap是一个非常强大的前端框架,它可以让开发者快速构建漂亮、现代的Web页面,并且具有良好的响应式布局和移动优先设计理念。如果你正在开发Web项目,不妨试试Bootstrap,相信它会给你带来惊喜。