https://webaim.org/blog/alt-text-and-linked-images/ http://html5doctor.com/block-level-links-in-html-5/
Created
May 29, 2020 20:17
-
-
Save cmbuckley/506c390c0fcfaa408f6938dd906dc127 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="family-fullsize.jpg"> | |
<img src="family-thumbnail.jpg" alt="My family" /> | |
</a> | |
<figure> | |
<a href="family-fullsize.jpg"> | |
<img src="family-thumbnail.jpg" alt="" /> | |
</a> | |
<figcaption>My family</figcaption> | |
</figure> | |
<a href="family-fullsize.jpg"> | |
<figure> | |
<img src="family-thumbnail.jpg" alt="" /> | |
<figcaption>My family</figcaption> | |
</figure> | |
</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment