-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtexts.html
47 lines (37 loc) · 2.06 KB
/
texts.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
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>BOOTSTRAP5 Texts</title>
</head>
<body>
<h1>Texts</h1>
<!-- Display headings don't necessarily have to be bold -->
<h2 class="display-2">Heading 2</h2>
<h3 class="display-3">Heading 3</h3>
<h4 class="display-4">Heading 4</h4>
<h5 class="display-5">Heading 5</h5>
<hr>
<!-- Lead text and & alignment -->
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Repudiandae, deleniti.</p>
<p class="lead">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Pariatur at, architecto cupiditate dolores cum qui.</p>
<p class="lead text-center">Lorem ipsum dolor sit amet consectetur adipisicing elit. Nam dolores autem nostrum! Quas saepe eius fuga, incidunt quidem similique! Nostrum.</p>
<p class="lead text-end">Lorem ipsum dolor sit amet consectetur adipisicing elit. Necessitatibus, perferendis.</p>
<!-- Text decoration & font-weight -->
<p class="text-decoration-underline">Underlines the text</p>
<p class="text-decoration-line-through">This is line through</p>
<p class="fw-bold">The font becomes bold</p>
<!-- text color -->
<p class="text-primary">theme primary color</p>
<p class="text-secondary">theme secondary color</p>
<p class="text-muted">This text is muted</p>
<!-- text background color -->
<p class="text-white bg-primary">White text blue background</p>
<p class="text-dark bg-secondary">White text secondary background</p>
<hr>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</html>