57 |
- |
1 |
<!DOCTYPE html>
|
|
|
2 |
<html lang="en">
|
|
|
3 |
<head>
|
|
|
4 |
<title>Bootstrap Color Theme Test</title>
|
|
|
5 |
<meta charset="utf-8">
|
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
7 |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
|
|
|
8 |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
|
|
9 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
|
|
|
10 |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
|
|
|
11 |
|
|
|
12 |
<link rel="stylesheet" href="https://www.findcheapmusic.linkpc.net/css/theme-material.css">
|
|
|
13 |
|
|
|
14 |
</head>
|
|
|
15 |
<body>
|
|
|
16 |
|
|
|
17 |
<div class="container bg-primary">
|
|
|
18 |
<h2>bg-primary</h2>
|
|
|
19 |
<p>Text black <span class="text-white">Text white</span></p>
|
|
|
20 |
</div>
|
|
|
21 |
<div class="container bg-secondary">
|
|
|
22 |
<h2>bg-secondary</h2>
|
|
|
23 |
<p>Text black <span class="text-white">Text white</span></p>
|
|
|
24 |
</div>
|
|
|
25 |
<div class="container bg-info">
|
|
|
26 |
<h2>bg-info</h2>
|
|
|
27 |
<p>Text black <span class="text-white">Text white</span></p>
|
|
|
28 |
</div>
|
|
|
29 |
<div class="container bg-success">
|
|
|
30 |
<h2>bg-success</h2>
|
|
|
31 |
<p>Text black <span class="text-white">Text white</span></p>
|
|
|
32 |
</div>
|
|
|
33 |
<div class="container bg-warning">
|
|
|
34 |
<h2>bg-warning</h2>
|
|
|
35 |
<p>Text black <span class="text-white">Text white</span></p>
|
|
|
36 |
</div>
|
|
|
37 |
<div class="container bg-danger">
|
|
|
38 |
<h2>bg-danger</h2>
|
|
|
39 |
<p>Text black <span class="text-white">Text white</span></p>
|
|
|
40 |
</div>
|
|
|
41 |
<div class="container bg-light">
|
|
|
42 |
<h2>bg-light</h2>
|
|
|
43 |
<p>Text black <span class="text-white">Text white</span></p>
|
|
|
44 |
</div>
|
|
|
45 |
<div class="container bg-dark">
|
|
|
46 |
<h2>bg-dark</h2>
|
|
|
47 |
<p>Text black <span class="text-white">Text white</span></p>
|
|
|
48 |
</div>
|
|
|
49 |
|
|
|
50 |
</body>
|
|
|
51 |
</html>
|