I have been using Bootstrap to build my site, but in doing so and researching SEO, I've discovered that using the i
tags with glyphicons is not technically "valid" HTML. Is there a definitive rule that says that i
tags can be used in this way without effecting markup validity without effecting SEO?
As part of this issue, I am also trying to satisfy a complaint that my anchor text does not describe its destination:
<a href="@Url.Action("Accountant", "Service")">
<div class="service-icon">
<div class="icon-book-1 icon-medium-effect icon-effect-2"></div>
</div>
</a>
This produces the desired visual effect, however I can't add anchor text else it will obviously be displayed on the screen. Normally an image would have been used within the anchor and I could have displayed alt
text, so I'm stuck as to where best to put this "descriptive text".