Skip to content

24 ways to impress your friends

Vote up?

Gregor

To add more semantic you coud use <dl>‘s instead of <div>‘s.
Instead of

<div class=“pic two left”> <img src=“sample-image.gif” width=“210px” height=“110px” alt=”“ /> <p>description</p>
</div>

you could use

<dl class=“pic two left”> <dt><img src=“sample-image.gif” width=“210px” height=“110px” alt=”“ /></dt> <dd>description</dd>
</dl>

what do you guys think about that?