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
| <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.photo_groupe {
display: flex;
flex-direction: column;
align-items: end;
}
.figure {
font-size: .88rem;
}
.figcaption {
text-align: justify;
max-width: 200px;
border: 2px solid red;
}
</style>
</head>
<body>
<div class="photo_groupe">
<figure class="figure">
<img src="mon image.jpg" alt="mon alt" width="300px">
<figcaption class="figcaption"> 1)pimpim, pampam, poumpoum 2)pimpim,
pampam, poumpoum </figcaption>
</figure>
</div>
</body>
</html> |
Partager