Page is a not externally linkable
shingokko - 12:05 am on Apr 26, 2012 (gmt 0)
I wonder if what you are trying to achieve is a list of links. If this is the case, you could write the markup as follows:
<div class="lb">
<ul>
<li>
<a href="index.htm">Home</a>
</li>
<li>
<a href="...">...</a>
</li>
<!-- Add more items as you need -->
</ul>
</div>
And to remove the underline of the a tags within the list, here's the CSS you'll need:
.lb a { text-decoration: none; }
Let me know if this is what you wanted to do.