FIGCAPTION TAG EXAMPLE
Run
<!doctype html>
<html>
    <head>
        <title>
            Figure Caption Example
        </title>
    </head>
    <body>
        <h1>Displaying an image of Porsche:</h1>
        <figure>
            <img src="https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/tutorials/uploads/pictures/1584351282-71449.jpg" alt="Porshe Car">
            <figcaption>This figure is showing you an image of a car</figcaption>
            
        </figure>
    </body>
</html>