Skip to main content

HTML Guide

Free site validation

Find out what web pages on your sites are affected by HTML issues.

Start tag “a” seen in “table”.

An <a> element has been found in an invalid place within a <table> element.

For example, the following code would cause this issue:

<table>
  <tr>
    <a href="#">link</a>
  </tr>
</table>

Instead, the <a> element should be inside a <td> element, as a <tr> can’t hold content directly:

<table>
  <tr>
    <td>
      <a href="#">link</a>
    </td>
  </tr>
</table>

Related W3C validator issues