... id and name attribute value mismatch

Cause:

NAME and ID are the old and the new name for the same attribute. If both are defined, they should be equal. Use id (new) or name (old):

Example:

Define the name=id or just id.

Good<a name="abcdef" id="ghijklm">
Good<a name="abcdefgh" id="abcdefgh">
Good<a id="abcdefgh">

Solution:

Remove one of the both attribute or make the 2 values of ID and NAME equal

References: