limanza

tag < figcaption > :

Definition and Usage

The <figcaption> tag defines a caption for a <figure> element.

The <figcaption> element can be placed as the first or last child of the <figure> element.


Example
example <p>
     ASP.Net is a very poewrfull language .
</p>

<figure>
      <img src="../Pic/ADS/ASP.gif" alt="ASP.Net" width="200" height="120">
      <figcaption>
            Figure 1 . ASP.Net
       </figcaption>
</figure>
output

ASP.Net is a very poewrfull language .

ASP.Net
Figure 1 . ASP.Net

 

Copyright 2014. All rights reserved.