tag < fiqure > :
Definition and Usage
The <figure> tag specifies self-contained content, like illustrations, diagrams, photos, code listings, etc.
While the content of the <figure> element is related to the main flow, its position is independent of the main flow, and if removed it should not affect the flow of the document.
| Example | |
| code |
<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 .
|