-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3-card-gallery.html
39 lines (36 loc) · 1.36 KB
/
3-card-gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3-Card-Gallery</title>
<style>
section#gallery {
background-color: white;
display: flex;
justify-content: center;
padding-top: 72px;
padding-bottom: 72px;
flex-wrap: wrap;
}
div.card {
max-width: 296px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
margin-left: 32px;
margin-right: 32px;
margin-bottom: 20px;
}
div.card > img {
border-radius: 20px;
}
</style>
</head>
<body>
<section id="gallery">
<div class="card"><img src="https://picsum.photos/250/270"> <h3>Haircut</h3> <p>Includes a consultation, shampoo & condition, scalp massage, haircut, & blow-dry.</p></div>
<div class="card"><img src="https://picsum.photos/251/270"> <h3>Haircolor</h3> <p>Includes consultation, color, shampoo & condition, scalp massage, & blow-dry.</p></div>
<div class="card"><img src="https://picsum.photos/249/270"> <h3>Styling</h3> <p>Includes consultation, shampoo & condition, scalp massage, blow-dry & curling or flat iron.</p></div>
</section>
</body>
</html>