Is it not necessary to close the tag in HTML 5 like HTML? or it's a bug in W3C validator
Why this code is valid in 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's really valid in HTML5. But is there any benefit to keep this behavior valid in HTML5. Do HTML5 creators think that stricter rules of XHTML were not good for Web?
` tag?
– BoltClock Sep 10 '11 at 06:32` tag
– Jitendra Vyas Sep 10 '11 at 06:34` and `
– Zaz Feb 02 '17 at 02:38