Why does browser "Firefox Page Source" show two closing </body> tags?

121 Views Asked by At

Dreamweaver showing error message "unbalanced body tag"

Something causing closing body tag twice. and

Need to fix so only one at end.

1

There are 1 best solutions below

1
On

Code at the beginning of the document:

<body>
<div class="body">

Code at the end:

</body>
</body>

The opening div with a class of body is never closed - the first instance of </body> should be changed to </div>.