Could someone give me the code that I would use to place images in a row ? I would appreciate code in CSS as well as html.
You need to use float. You can either do it inline: <img style="float:left" src="pic1.jpg" /><img style="float:left" src="pic2.jpg" />etc... ---------------- Or using CSS; <img class="myimg" src="pic1.jpg" /><img class="myimg" src="pic2.jpg" />etc... with the CSS file: .myimg {float:left}