Can I use figure element like this:
<ul>
<li>
<figure>
<a href="url"> <img src="url"> </a>
<figcaption>
<div>
<p> yo this is my naked wife check out more pix <a href="url"> here </a> </p>
</div>
</figcaption>
</figure>
</li>
<li>
etc.
?
This is a possible use of the
figure
element, yes.(Note that your
img
needs analt
attribute. And you might want to omit thediv
, as you could target thefigcaption
orp
directly.)