Given the following link to an image:
<a href="path/to/img.jpg">Title</a>
What is the most semantically sound method for indicating the location of a thumbnail?
The best I could come up with so far is using data-
attributes like so:
<a href="path/to/img.jpg" data-thumb="path/to/thumb.jpg">Title</a>
However, it doesn't seem very semantically sound. Is there a better or more correct way to do this?