Too much <...>-elements

Cause:

A HTML element was defined twice.

Example:

Good

<head>
<title>title</title>
<title>another title</title>
</head>

Good

<head>
<title>title</title>
</head>

Solution:

Erase the superfluous element.

References: