Topic: Use of <span>
I thought that if I had an image in a DIV, followed by some text I could surround the contents of the DIV with span to maintain the flow, as opposed to having the text below.
<div id='header'>
<span>
<img src="myImage.png" alt="picture"></img>
<h1> The Title of My Web Page</h1>
</span>
</div>When I do the above, the <h1> is under the image and my editor suggest something is askew.

