You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the Staff Bio Page consider using one link to span the person's image and their name.
When an image and some text are located next to each other, or are stacked on top of one another, and share a link, use one link <a href=”https://www.example.com”></a> to wrap around both the image and text elements rather than splitting them into two links.
Correct example of a link wrapping around image and text elements:
<img src=”...” alt=”Image description” />
<p>Text that goes with the image and link.</p>
</a>```
On the Staff Bio Page consider using one link to span the person's image and their name.
When an image and some text are located next to each other, or are stacked on top of one another, and share a link, use one link
<a href=”https://www.example.com”></a>to wrap around both the image and text elements rather than splitting them into two links.Correct example of a link wrapping around image and text elements: