Image

The theme supports standard HTML image elements and related tags:

  • <img> for displaying images
  • <figure> and <figcaption> for images with captions

Examples

1
<img src="image.jpg" alt="Sample image description">
1
2
3
4
<figure>
  <img src="campus.jpg" alt="University campus">
  <figcaption>University campus during the spring semester.</figcaption>
</figure>

Always use the alt attribute to provide descriptive alternative text.