Skip to content

Instantly share code, notes, and snippets.

@VictorOmondi1997
Created August 11, 2019 17:25
Show Gist options
  • Save VictorOmondi1997/bf4caf5f1b5869379857f09c179eaaa2 to your computer and use it in GitHub Desktop.
Save VictorOmondi1997/bf4caf5f1b5869379857f09c179eaaa2 to your computer and use it in GitHub Desktop.
Know your HTML tag | <figure></figure>

Know your HTML tag!

Want to add a caption to an image?

Try this tag:

<figure>
    <img src="path to your awesome image" alt="Awesome Image" />
    <figcaption>
        <p>This is an awesome caption!</p>
    </figcaption>
</figure>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment