<!DOCTYPE html> <html> <head> <style> figure { display: block; margin-top: 1em; margin-bottom: 1em; margin-left: 40px; margin-right: 40px; } </style> </head> <body> <h1>The figure and figcaption elements + CSS</h1> <figure> <img src="https://horje.com/avatar.png" alt="Trulli" style="width:100%"> <figcaption>Fig.1 - Trulli, Puglia, Italy</figcaption> </figure> </body> </html>