Jump to content
15/12/2008
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?
Vote down?
15/12/2008
To add more semantic you coud use <dl>‘s instead of <div>‘s.
Instead of
you could use
what do you guys think about that?