Figure and caption (figure-figcaption)
Ensure captioned images and diagrams are marked up with a <figure> element containing a <figcaption>.
Aria-labelledby instead of <figcaption>
In this example there is used aria-labelledby instead of <figcaption>.
The business plan includes marketing, strategy, finance...
<figure aria-labelledby="caption-text">
<img src="../../../assets/images/diagram.png" width="500" alt="Network diagram" />
</figure>
<p id="caption-text">The business plan includes marketing, strategy, finance...</p>
<img src="../../../assets/images/diagram.png" width="500" alt="Network diagram" />
</figure>
<p id="caption-text">The business plan includes marketing, strategy, finance...</p>