Do I have to use ul
/ol
elements when I make navbars/other groups of links or it is optional?
Is it ok to replace this code
<div>
<ul style="list-style: none">
<li style="display: inline-block"><a href="#">fb page</a></li>
<li style="display: inline-block"><a href="#">twitter account</a></li>
<li style="display: inline-block"><a href="#">stackoverflow account</a></li>
</ul>
</div>
by
<div>
<a href="#" style="display: inline-block">fb page</a>
<a href="#" style="display: inline-block">twitter account</a>
<a href="#" style="display: inline-block">stackoverflow account</a>
</div>
?
`. But it can be done with `` too...
– Josef E. Jun 30 '14 at 20:29