Images

Img

Cartoon
View code
<img src="./static/person.png" alt="Cartoon" />

Figure & Figcaption

Cartoon
Picture of a person
View code
<figure>
  <img src="./static/person.png" alt="Cartoon" />
  <figcaption>Picture of a person</figcaption>
</figure>

SVG

View code
<svg width="200" height="200" viewBox="0 0 100 100">
  <path d="M0,0 100,100 M100,0 0,100" stroke="blue" stroke-width="5" fill="none" />
  <circle cx="50" cy="50" r="30" stroke="red" stroke-width="5" fill="none" />
</svg>