What I am trying to do is have a <p>
element with the title of an image on the first line and a <p>
element that contains "by + the image of the author + the name of the author"
. The problem is that I'm not sure putting an <img>
tag + <a>
tag into the <p>
tag is correct.
The bare bone of what I'm trying to do is this:
<p>Title<p>
<p>
by <img src='#'><a href='#'>Author</a>
</p>