How to wrap the title element with a head element?

Tell us what’s happening:

Your code so far


<!DOCTYPE html>
<html>
 <head><title>Best page ever</title>BEST PAGE EVER</head>
<body>
   <h1></h1>

  <p>Cat ipsum dolor sit amet, jump launch to pounce upon little yarn mouse, bare fangs at toy run hide in litter box until treats are fed. Go into a room to decide you didn't want to be in there anyway. I like big cats and i can not lie kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff. Meow i could pee on this if i had the energy for slap owner's face at 5am until human fills food dish yet scamper. Knock dish off table head butt cant eat out of my own dish scratch the furniture. Make meme, make cute face. Sleep in the bathroom sink chase laser but pee in the shoe. Paw at your fat belly licks your face and eat grass, throw it back up kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
</body>
</html>  

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document/

Looks like you added some text and removed some text unexpectedly.
Reset the code by clicking the reset button then follow the instructions. The instructions only want you to add two tags to the code, nothing else shoukd be touched.

Only add:

<head>
</head>
<body>
</body>

The head tag should wrap around the existing title tag.
The body should wrap about the tags that come after that.