I am encountering a problem with my basic webpage.
<html>
<head>
<title/>
</head>
<body>
<h1>hello</h1>
</body>
</html>
When viewed in both Chrome and Firefox, the webpage breaks. The issue seems to be related to the self-closing Title tag. Removing the TITLE tag or adding an actual title resolves the issue.
<title>Test Page</title>
I have searched for information on whether self-closing TITLE tags are invalid, but I couldn't find any definitive answer.