On the page:
http://www.eqtraders.com/articles/ar...r=120055000000
You have a bug in the HTML code. One line currently reads:
The anchor tag <a> isn't closed. This causes all lines after it to become highlighted as if they were a link when you mouse over them. The effect is harmless but distracting when you read. You also have a useless </b> tag, which has no effect whatsoever on the page, but looks bad from an HTML programmer's point of view.
That one line needs to be changed to add a </a> tag and remove the </b> tag, as follows:
That should fix the problem. Hope it helps you out. =)
http://www.eqtraders.com/articles/ar...r=120055000000
You have a bug in the HTML code. One line currently reads:
Code:
<h4>Planar Stealth: Pottery:</b> <a name="pottery"></h4>
That one line needs to be changed to add a </a> tag and remove the </b> tag, as follows:
Code:
<h4>Planar Stealth: Pottery: <a name="pottery"></a></h4>

Comment