It's better with a header

Hi, I can’t seem to see what I did wrong here.

Your body should be outside the head

Structure should be like this:

<!DOCTYPE html>
<html>
   <head>
        <title>Title goes here </title>
   </head>
<body>
    <h1>You put your h1 heading here</h1>
</body>
</html>

This is the structure

<!DOCTYPE html>
<html>
   <head>
        <title>Title goes here </title>

<style>

<!-- style if any -->

</style>   

</head>
<body>

    <h1>H1 text here</h1>
    <p>Paragraph text goes here</p>

</body>
</html>

I managed to get it to work now, thanks!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.