Isn't it necessary to close the tag in HTML 5, like HTML? or is it a bug in the W3C validator
Why is this code valid in the W3C validator
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>title</title> <link rel="stylesheet" href="style.css"> <script src="script.js"></script> </head> <body> <p>Some Text </body> </html>
I would be surprised if it really acted in HTML5. But is there any advantage to this behavior being correct in HTML5. HTML5 creators think stricter XHTML rules are not suitable for the Web?
source share