I have a div element and within that div, we have text between p elements.
I want to add a heading. Should it go inside or outside the p?
Which is better:
<p>This is text
<h3>This is my h3</h3>
More text
</p>
<p>another text<p>
or
<p>This is text<p>
<h3>This is my h3</h3>
<p>another text<p>