This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by HaiXiu
almost 9 years

i have got good page but why do i still won't success?...what is wrong?

Explain: before we move on, it is important to note that every good <.body.> has a good <.head.> attached. The <.head.> wraps around all of the information that isn’t directly shown on the page, like the <.style.> element or the <.title.> element.

Hint:

Answer 557efff5d3292fc6610002d6

0 votes

Permalink

HI HaiXiu,

The <head> ... </head> must begin and end before the <body> ... </body> begins.

It is like with humans, the head on top, the body after.

Your webpage should have this format:

<!DOCTYPE html>
<html>

    <head>
        <style>
            ... all of your CSS code goes in here
        </style>
    </head>

    <body>
        ... all of your HTML code goes in here
    </body>

</html>
points
Submitted by Judy
almost 9 years