La etiqueta <figurecaption> en HTML se utiliza para establecer un título para el elemento de figura en un documento. Esta etiqueta es nueva en HTML5.
Sintaxis:
<figcaption> Figure caption... </figcaption>
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <head> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h3> How to define an image caption? </h3> <figure> <img src= "https://media.geeksforgeeks.org/wp-content/uploads/geeks-25.png" alt="gfglogo" style="width:50%"> <figcaption>GeeksforGeeks Logo</figcaption> </figure> </body> </html>
Producción: