figcaption tag in HTML5

It uses a figure element, which is used to take an image element in the document. We can also place any text in it.
Ex:
11.png
Complete Program:
  1. <html>
  2. <body>
  3. <p>A day after scrapping a visit to China following Beijing's denial of visa to an Arunachal officer, the govt decided to go ahead with the tour, but with just 15 members.</p>
  4. <figure>
  5. <img src="china.gif" width="300" height="200" />
  6. <figcaption>
  7. India does a U-turn, to send small military team to China</figcaption>
  8. </figure>
  9. </body>
  10. </html>