FIGURE TAG EXAMPLE
Run
<!doctype html>
<html>
    <head>
        <title>
            The Figure Element Example
        </title>
        <style>
            figure {
                border: solid 1px #ccc;
                margin: 0 auto;
            }
        </style>
    </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="Porche Car">
        </figure>
    </body>
</html>