-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbs1.html
22 lines (22 loc) · 929 Bytes
/
bs1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>用户登录-使用的是Bootstrap技术</title>
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1>用户登录-齐世杰</h1>
用户名<input class="form-control" type="text">
密码<input class="form-control" type="password">
<input class="btn btn-primary btn-block" type="submit" value="登录">
</div>
</body>
</html>