As a newcomer to the world of HTML and CSS, I am eager to learn from experienced gurus how to layout the image above using HTML and minimal CSS. Thank you for your help.
This is my approach: Firstly, I would slice eight small images and one white background image with rounded corners.
The HTML code:
<div id="top" style="width=500px">
<img src="..."><h3>LATEST NEWS</h3>
<img src="..."><h3>LATEST NEWS</h3>
<img src="..."><h3>LATEST NEWS</h3>
<img src="..."><h3>LATEST NEWS</h3>
</div>
<div id="bottom" style="width=500px">
<img src="..."><h3>LATEST NEWS</h3>
<img src="..."><h3>LATEST NEWS</h3>
<img src="..."><h3>LATEST NEWS</h3>
<img src="..."><h3>LATEST NEWS</h3>
</div>
Note: What are the benefits of using these images as background images instead of in an img tag? Which method is preferred and why?