-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
58 lines (56 loc) · 2.27 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap Example</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body class="bg">
<div class="jumbotron">
<div class="container">
<h1>Hello, world!</h1>
<p>...</p>
<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a></p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="page-header">
<h1>Example page header <small>Subtext for header</small></h1>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6 col-sm-4 col-md-3">
<h1>Hello World!</h1>
</div>
<div class="col-xs-6 col-sm-4 col-md-3">
<h1>Hello Busan!</h1>
</div>
<div class="col-xs-6 col-sm-4 col-md-3 visible-md visible-lg">
<h1>Hello Bernie!</h1>
</div>
<div class="col-xs-6 col-sm-4 col-md-3 hidden-xs">
<h1>Wsup Bright!</h1>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<div class="btn-group" role="group" aria-label="...">
<button type="button" class="btn btn-primary btn-lg">Left</button>
<button type="button" class="btn btn-success">Middle</button>
<button type="button" class="btn btn-danger">Right</button>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.3.min.js" integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>