I need to add different icons to the different items on the following list...
And this is the structure of the list without id's or classes, only with the role selector...
<ul class="main-nav" role="menu">
<li role="none"><a role="menuitem" href="#">Link 1</a></li>
<li role="none"><a role="menuitem" href="#">Link 2</a></li>
<li role="none"><a role="menuitem" href="#">Link 3</a></li>
<li role="none"><a role="menuitem" href="#">Link 4</a></li>
</ul>
As I said, every link needs to have a different icon.
Can you help me with the best way of doing this?
Thanks in advance!