-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap-test.html
More file actions
83 lines (71 loc) · 2.95 KB
/
bootstrap-test.html
File metadata and controls
83 lines (71 loc) · 2.95 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Bootstrap Intro Lecture</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<main class="container">
<div class="jumbotron">
<h1 class="text-center">This is a Title</h1>
</div>
<h1 class="bg-info">Test</h1>
<h1 class="bg-success">Test</h1>
<h1 class="bg-warning">Test</h1>
<h1 class="bg-danger">Test</h1>
<p class="text-info">Test</p>
<p class="text-success">Test</p>
<p class="text-warning">Test</p>
<p class="text-danger">Test</p>
<button class="btn btn-default">Test</button>
<button class="btn btn-success">Test</button>
<button class="btn btn-info">Test</button>
<button class="btn btn-danger">Test</button>
<button class="btn btn-warning">Test</button>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aspernatur eligendi illum modi nihil odit quasi ratione similique tenetur velit. A adipisci, autem cumque doloribus eos expedita fugit incidunt iure laborum magni modi neque omnis placeat provident quasi qui quis, reiciendis reprehenderit repudiandae saepe sed suscipit tenetur unde veniam vero vitae.</p>
<button class="btn btn-default center-block">Test</button>
<hr>
<table class="table table-striped">
<thead class="thead-dark">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
</thead>
<tr>
<td>Item 1</td>
<td>Item 2</td>
<td>Item 3</td>
</tr>
<tr>
<td>Item 1</td>
<td>Item 2</td>
<td>Item 3</td>
</tr>
<tr>
<td>Item 1</td>
<td>Item 2</td>
<td>Item 3</td>
</tr>
<tr>
<td>Item 1</td>
<td>Item 2</td>
<td>Item 3</td>
</tr>
<tr>
<td>Item 1</td>
<td>Item 2</td>
<td>Item 3</td>
</tr>
</table>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</main>
</body>
</html>
Collapse