0
Q:

figcaption


    <figure>
  <img src="pic_trulli.jpg" alt="Trulli" 
    style="width:100%">
  <figcaption>Fig.1 - Trulli, Puglia, 
    Italy.</figcaption>
</figure>
 
3
<!-- Just an image -->
<figure>
  <img
  src="https://developer.mozilla.org/static/img/favicon144.png"
  alt="The beautiful MDN logo.">
</figure>

<!-- Image with a caption -->
<figure>
  <img
  src="https://developer.mozilla.org/static/img/favicon144.png"
  alt="The beautiful MDN logo.">
  <figcaption>MDN Logo</figcaption>
</figure>
0
<figure>
  
  <img src="pic_trulli.jpg" alt="Trulli" style="width:100%">
  <figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>

</figure>
-1

    <html>
<head>
<style>
figure {
  border: 1px #cccccc solid;
  
    padding: 4px;
  margin: auto;
}

figcaption {
  
    background-color: black;
  color: white;
  font-style: 
    italic;
  padding: 2px;
  text-align: center;
}

    </style>
</head>
<body>

<figure>
  <img src="pic_trulli.jpg" 
    alt="Trulli" style="width:100%">
  <figcaption>Fig.1 - Trulli, 
    Puglia, Italy</figcaption>
</figure>

</body>
</html> 
-1

New to Communities?

Join the community