¿Cómo establecer el título de una imagen usando HTML?

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:

Publicación traducida automáticamente

Artículo escrito por vkash8574 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *