Cant Define the Head and Body of an HTML Document

Tell us what’s happening:

I cant get past this stage@anyone

Your code so far


<!DOCTYPE html>
<html>
<head>Cats</head>
<title>The best page ever</title>
<body> cats</body>
<h1>The best page ever</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>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 OPR/71.0.3770.284.

Challenge: Define the Head and Body of an HTML Document

Link to the challenge:

1 Like

@Nimarh_Z you write

<head>Cats</head>

The code should be:

<header>Cats</header>

Try it
Hope This Help

title tag must be inside the head tag…
See the structure of html below

<!DOCTYPE html>
<html>
    <head>
        <!-- Head stuff goes here(title, metadata, link to stylesheets)-->
    </head>
    <body>
        <!--Actual visible part of your page-->
    </body>
</html>

Learn more @ W3Schools

2 Likes

Here are more images, if mine code is not self explanatory
image

image

image

2 Likes

I have exactly the same problem to solve this last question of " Basic HTML and HTML5"

<!DOCTYPE html>
<html>
  <head>
      <title></title>
  </head>
  <body>
      <h1>h1</h1>
      <p>p</p>
  </body>
</html>
1 Like

What is the problem that you’re facing…

Hello @hodd. Welcome.
Can you please click on the “Ask for Help” button in the challenge which is available by clicking on the “Get Help” button? That will create a new topic for you with your current code and link to the challenge. You will be able to describe the problem before posting the topic.

Continuing this topic is not good as this is already resolved.

Hope you understand.

Unfortunatly, t is impossible to check/valid this exercice. I wanted to have the certification

ok, but I saw this topic, I didn’t want to make duplicates ^^

1 Like

That’s good of you. But, continuing the conversation on this resolved topic is meaningless. So, don’t worry to create another topic. That will make more people help you.

1 Like