-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmore.html
59 lines (58 loc) · 1.78 KB
/
more.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
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>More Bootstrap</title>
<link rel="stylesheet" href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<body>
<h2>More Bootstrap</h2>
<div class="bg-info pt-3 mt-15 w-50 text-center shadow-lg">
My content here
</div>
<div class="shadow-lg p-3 mb-5 bg-body rounded">Larger shadow</div>
<div class="p-3 mb-5 bg-white rounded">Larger shadow</div>
<button class="btn btn-primary">My button</button>
<button>Another button</button>
<button class="btn btn-danger">yet Another button</button>
<button class="btn btn-warning">My Warning</button>
<button class="btn btn-info">Top Gun</button>
<img class="img-fluid" src="images/holiday.jpg" alt="">
<p class="h2">My paragraph</p>
<p>
<span class="d-block">Hello</span>
<span>Again</span>
</p>
<table class="table table-danger">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</body>
</html>