Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 5: Image Manipulation in HTML!
Instruction
Using \<figure\> and \<figcaption\> Elements in HTML
The HTML <figure>
and <figcaption>
elements allow for the grouping of media content, such as images or tables, with descriptive captions. This pairing improves the semantic structure of the page, making it clear that a particular media item and caption are related. Letβs walk through the HTML structure, CSS styling, and expected output of using <figure>
and <figcaption>
.
**HTML Struc...