Picture Label

I am trying to put a picture above my title. Above what says Smalse Music Social.
<body>
<div id=“main”>
<header>
<div id=“banner”>
<div id=“welcome”>
<h3>Smalses <span>Music Social</span></h3>
</div>

    &lt;div id="welcome_slogan"&gt;
      &lt;h3&gt;Your Music Destination&lt;/h3&gt;
    &lt;/div&gt;&lt;!--close welcome_slogan--&gt;			
  &lt;/div&gt;&lt;!--close banner--&gt;
&lt;/header&gt;

I am trying to put a picture above
<h3>Smalses <span>Music Social</span></h3>
The picture is
<div class=“inner”><img src=“images/iPhoneIcon_Medium-1.png”>
Please help

Have you tried this?


<div id="welcome_slogan">
<img src="images/iPhoneIcon_Medium-1.png" />
<h3>Your Music Destination</h3>
</div><!--close welcome_slogan-->

I would be surprised if it were purely a markup question; it sounds more like a CSS positioning problem but stranger things have happened. If it was a markup issue then post #2 would possibly work if the page was linearised.