I wonder if the <dl>
element from XHTML 1.0 is semantically valid to display a resource tag list, like that:
<dl>
<dt>Tags</dt>
<dd><a href="">Lorem</a></dd>
<dd><a href="">Ipsum</a></dd>
<dd><a href="">Dolor</a></dd>
</dl>
Or with a subscription feed, as the code bellow shows:
<dl>
<dt>Feeds</dt>
<dd><a href=""><img src="atom.png" alt="Atom" /></a></dd>
<dd><a href=""><img src="rss.png" alt="RSS" /></a></dd>
</dl>
Or is the <ul>
element more adapted to these examples?