A tag <figurecaption> em HTML é usada para definir uma legenda para o elemento de figura em um documento. Esta tag é nova em HTML5. 

Sintaxe:

<figcaption> Figure caption... </figcaption>

Exemplo 1: 

<!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>

Saída: