-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13-shadow.html
38 lines (38 loc) · 1.1 KB
/
13-shadow.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BootstrapWorkshop</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container p-5">
<div class="row">
<div class="col mx-3 my-3 shadow">
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Reprehenderit, quasi.
</p>
</div>
<div class="col mx-3 my-3 shadow-sm">
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Reprehenderit, quasi.
</p>
</div>
<div class="col mx-3 my-3 shadow-lg">
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Reprehenderit, quasi.
</p>
</div>
</div>
</div>
</body>
</html>