To set the doctype, we need to wrap a ! sign and the words doctype and html inside angular brackets.

Can you order the tag so that it makes sense?

<html>
 <head>
  <title>My Page</title>
 </head>
 <body>
  <h1>My favorite things</h1>
  <p>
   Raindrops on <em>roses</em><br>
   Whiskers on <strong>kittens</strong> 
  </p>
 </body>
</html>
]]>

Nice! Now this website is flawless.

Make sure to start with < and !. Then add doctype html and the > sign.