What's wrong with this code?
<html>
<head>
My webpage
</head>
<body>
<h1>My favorite things</h1>
<p>
Raindrops on <em>roses</em><br>
Whiskers on <strong>kittens</strong>
</p>
</body>
</html>]]>- The
title element is missing - The
<br> tag is missing a closing </br> tag - The second text line also needs a
<br> tag - It's
<doctype! html> not <!doctype html>