I'm trying to put an image at the top of a page but having trouble. I'm not that familar with CSS but know the basics I guess. So here is the code.
<body>
<div id="wrapper">
<div id="header" class="headerGlow">
<div id="logo"><img src="images/holding/logo.png" width="311" height="78" alt="Cor" /></div>
<div id="socialMedia"><img src="images/holding/social-media.gif" alt="Social Media links" width="182" height="23" border="0" usemap="#SocialMedia" href="#" />
<map name="SocialMedia" id="SocialMedia">
<area shape="rect" coords="5,4,26,18" href="http://www.facebook.com/pages/" alt="Facebook" />
<area shape="rect" coords="36,3,63,17" href="http://www.linkedin.com/company/" alt="LinkedIn" />
<area shape="rect" coords="77,2,100,18" href="http://twitter.com/#!/" alt="Twitter" />
<area shape="rect" coords="116,4,139,22" href="http://www.yelp.com/biz/" alt="Yelp" />
<area shape="rect" coords="157,5,177,17" href="http://www.youtube.com/user/" alt="YouTube" />
</map>
<p>CALL: 855.555.5555</p>
<div id="reservation"><a href="https://book"><img src="images/holding/reservation-button.jpg" width="131" height="34" alt="Make a Reservation" /></a></div>
</div>
On the top left is the logo picture and to the right is social media icons, well there is a big space in the middle where I want to put a small picture. How do I do that? I tried html but that didn't work. Any ideas?
Thanks