-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday4.html
More file actions
39 lines (35 loc) · 1.71 KB
/
day4.html
File metadata and controls
39 lines (35 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Class in Bootstrap</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<style>
.container{
height: 80vh;
}
</style>
</head>
<body>
<div class="container bg-info my-5">
<p class="text-danger">This is a paragraph</p>
<p class="text-success">This is a paragraph</p>
<p class="text-light">This is a paragraph</p>
<p class="text-dark">This is a paragraph</p>
<p class="text-primary">This is a paragraph</p>
<p class="text-secondary">This is a paragraph</p>
<p class="text-muted">This is a paragraph</p>
<p class="text-warning">This is a paragraph</p>
<p class="text-white">This is a paragraph</p>
</div>
<p class="text-info">This is a paragraph</p>
<!-- Use to highlight a particular word -->
<p>Use the mark element (or the .mark class) to <mark>highlight</mark> text.</p>
<!-- Used to change color of particular word -->
<p>The following HTML elements: <code>span</code>, <code>section</code>, and <code>div</code> defines a section in a document.</p>
<!-- Use to change background color to black -->
<p>Please Press <kbd>ctrl + shift + p </kbd></p>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</html>