Good morning, I'm doing an exercise with HTML and I have a doubt, I'm enclosing a label <a>
a <div>
and within this same there is a label <p>
and other <img>
and it works well and as I want, my query is, is it correct to do so according to web standards?
<a href="enlace">
<div>
<p>texto</p>
<img src="img.png">
</div>
</a>