Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> .container { position: relative; } .bottomleft { position: absolute; bas: 8px; gauche: 12px; taille de police: 20px; } img { largeur: 100%; hauteur: auto; opacité: 0.5; } </style> </head> <body> <h2>Texte de l'image</h2> <p>Ajoutez du texte à une image dans le coin inférieur gauche :</p> <div class="container"> <img src="img_5terre.jpg" alt="Cinque Terre" width="600" height="400"> <div class="bottomleft">Texte en bas à gauche</div> </div> </body> </html>