-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard-practise.html
More file actions
108 lines (102 loc) · 4.33 KB
/
card-practise.html
File metadata and controls
108 lines (102 loc) · 4.33 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<title>bootstrap2</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous">
</head>
<body>
<div class="container-fluid ">
<div class="row gx-5">
<div class="card col-sm-5">
<img src="doll.jpg" class="card-img-top rounded-circle" alt="dol">
<h5 class="card-header text-uppercase">Card header</h5>
<div class="card-body">
<h5 class="card-title">My Doll</h5>
<h6 class="card-subtitle text-muted">Preety kitty doll</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.
</p>
</div>
<div class="mb-2">
<ul class="list-group list-group-flush">
<li class="list-group-item fst-italic">An item</li>
<li class="list-group-item font-monospace">A second item</li>
<li class="list-group-item invisible">A third item</li>
</ul>
</div>
<div class="card-body">
<a href="#" class="btn btn-warning">Damon</a>
<a href="#" class="btn btn-info">Stefen</a>
</div>
<h5 class="card-footer fw-bolder bg-warning">Footer</h5>
</div>
<div class="card col-sm-5 ">
<img src="doll.jpg" class="card-img-top rounded-circle" alt="dol">
<h5 class="card-header mt-5">header</h5>
<div class="card-body">
<h5 class="card-title">My Doll</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.
</p>
</div>
<div class="mb-2">
<ul class="list-group list-group-flush">
<li class="list-group-item">An item</li>
<li class="list-group-item">A second item</li>
<li class="list-group-item">A third item</li>
</ul>
</div>
<div class="card-body">
<a href="#" class="card-link">Damon</a>
<a href="#" class="card-link">Stefen</a>
</div>
<h5 class="card-footer fw-bolder">Footer</h5>
</div>
</div>
</div>
<!--hr-->
<div>
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">Special title treatment</h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">Special title treatment</h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
</div>
</div>
<div class="card w-50 text-white bg-dark">
<img src="img2.jpg" class="card-img" alt="img">
<div class="card-img-overlay"> <!--to give text on img-->
<h5 class="card-title ">Card title</h5>
<p class="card-text ">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
</div>
</div>
<div class="card w-50">
<div class="row gx-5">
<div class="col-md-4">
<img src="doll.jpg" alt="dol" class="img-fluid rounded-start">
</div>
<div class="col-md-8">
<divsss class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</divsss>
</div>
</div>
</div>
</body>
</html>