CodeLab
Tutorials For Everyone
Run
<!Doctype HTML> <html> <head> <title>HTML Figure element</title> </head> <body> <h2>HTML figure element and caption</h2> <p>Following is the representation of a figure along with a caption at the bottom of image.</p> <p>Tuts Insider is an online learning website that will teach you the following programming languages. <figure> <img src="https://www.tutsinsider.com/wp-content/uploads/2019/09/html-figure-300x261.png" alt="Tuts Insider Languages Tutorials" style="width:50%; height: auto; border: 1px solid; padding: 10px;" /> <figcaption>This image is about programming languages.</figcaption> </figure> <ul> <li>HTML</li> <li>C#</li> <li>PHP</li> <li>SQL</li> <li>C++</li> <li>Java</li> <li>.Net</li> </ul> </body> </html>