简体   繁体   中英

Html Validation Column 19: An body start tag seen but an element of the same type was already open

I have just made a simple page but i am unable to figure out what wrong please let me know what to edit whenever i validate it via W3 it give error

[Link to HTML validation][1]

Error Line 12, Column 19: An body start tag seen but an element of the same type was already open.

regards

The error message is clear enough: you have two <body> tags.

From your page source code:

<body>
<body class="menu">
<a href="mailto:mail@example.com" class="email">Contact</a>
<a href="resume">Resume</a>
</div>

I imagine the second <body> should actually be a <div> .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM