-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbs_task4.html
75 lines (72 loc) · 3.51 KB
/
bs_task4.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BS Task 4 </title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<style>
body {
display: grid;
place-content: center;
}
.container {
display: flex;
column-gap: 25px;
}
</style>
</head>
<body>
<div style="height: 6rem;"></div>
<div class="container">
<div class="card" style="width: 18rem; min-height: fit-content; height: 35rem;">
<img src="https://cdn.britannica.com/95/124395-004-3B484C8B/hand-cards-trump-spades.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Material Cards</h5>
<p class="card-text">Cards for display in portfolio style material design by Google.</p>
<hr>
</div>
<div class="card-body">
<a href="#" class="card-link text-warning">LINK</a>
<a href="#" class="card-link text-warning">LINK</a>
</div>
</div>
<div class="card" style="width: 18rem; min-height: fit-content; height: 35rem;">
<img src="https://sticker-collection.com/stickers/animated/Peepo_Pepe/thumbs/fc90b76c-88a5-4abb-848e-b1741a2edae0file_2751942.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Material Cards</h5>
<p class="card-text">Cards for display in portfolio style material design by Google.</p>
<hr>
</div>
<div class="card-body">
<a href="#" class="card-link text-warning">LINK</a>
<a href="#" class="card-link text-warning">LINK</a>
</div>
</div>
<div class="card" style="width: 18rem; min-height: fit-content; height: 35rem;">
<img src="https://imgflip.com/s/meme/Doge.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Material Cards</h5>
<p class="card-text">Cards for display in portfolio style material design by Google.</p>
<hr>
</div>
<div class="card-body">
<a href="#" class="card-link text-warning">LINK</a>
<a href="#" class="card-link text-warning">LINK</a>
</div>
</div>
<div class="card" style="width: 18rem; min-height: fit-content; height: 35rem;">
<img src="https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/d2257e67-5a00-42a6-a9f8-b64649c8004a/de9xbiz-23d20b37-503f-444c-afed-2cfc4af1ec8e.png/v1/fill/w_441,h_492/dimple__mob_psycho_100__render_by_bunryuu_de9xbiz-fullview.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NDkyIiwicGF0aCI6IlwvZlwvZDIyNTdlNjctNWEwMC00MmE2LWE5ZjgtYjY0NjQ5YzgwMDRhXC9kZTl4Yml6LTIzZDIwYjM3LTUwM2YtNDQ0Yy1hZmVkLTJjZmM0YWYxZWM4ZS5wbmciLCJ3aWR0aCI6Ijw9NDQxIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmltYWdlLm9wZXJhdGlvbnMiXX0.LqnPI50vXpgAcCud3mLXn7IiQP4rqO3u1_YoJQzEcao" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Material Cards</h5>
<p class="card-text">Cards for display in portfolio style material design by Google.</p>
<hr>
</div>
<div class="card-body">
<a href="#" class="card-link text-warning">LINK</a>
<a href="#" class="card-link text-warning">LINK</a>
</div>
</div>
</div>
</body>
</html>