Sequence NODE_107
Easy

Create an Image Gallery with Captions

HTML
Technical Specification

Build an image gallery with at least six images, each having a caption using <figure> and <figcaption>.

Input/Output Samples
Input:6 image URLs
Output:Grid of images with textual captions under each
Optimal Logic Path
Use <figure><img ... /><figcaption>Caption text</figcaption></figure> for each gallery item.
Architectural Deep-Dive
Using <figure> and <figcaption> pairs visual content with descriptive text, improving accessibility and SEO.