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