-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (78 loc) · 2.19 KB
/
Copy pathindex.html
File metadata and controls
93 lines (78 loc) · 2.19 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
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>。+゚.。+。(´ω`*)♪♪</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"; rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-3">
<h1 class="text-center">𐔌 . ⋮ Bootstrap Images <i>!</i> ֹ ₊ ꒱</h1>
<br>
<br>
<br>
<center><h2>Images</h2>
<p>Here are examples of images styled using Bootstrap's image classes:</p>
<br>
<br>
<br>
<div class="container mt-3">
<h4>Fluid Image ✩</h4>
<img src="korea.jpg" class="img-fluid" alt="fluid image" width="1100" height="500">
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="col-md-4">
<h4>Rounded Corners ✩</h4>
<img src="korea.jpg" class="rounded" alt="rounded corners" width="304" height="236">
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="col-md-4">
<h4>Rounded Circle ✩</h4>
<img src="korea.jpg" class="rounded-circle" alt="rounded circle" width="304" height="236">
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="col-md-4">
<h4>Thumbnail Image ✩</h4>
<img src="korea.jpg" class="img-thumbnail" alt="thumbnail image" width="304" height="236">
</div>
</center>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="container mt-3">
<center><h2>Centered Image ✩</h2>
<p>Center an image by adding utility classes such as .mx-auto (margin:auto) and .d-block (display:block) to the image!</p></center>
<img src="juhpan.jpg" class="mx-auto d-block" style="width:50%">
</div>
<br>
<br>
<br>
<br>
<div class="container mt-5">
<center><h2>Aligning Images ✩</h2>
<p>Use float classes to float the image to the left or to the right!</p></center>
<img src="juhpan.jpg" class="rounded float-start" alt="Left" width="304" height="236">
<img src="juhpan.jpg" class="rounded float-end" alt="Right" width="304" height="236">
</div>
</body>
</html>