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

0 points
Submitted by Nathan
over 11 years

I get it to work but get an error message

Below is my code. It works with an empty space before Famous and I get the error message:

Oops, try again. Make sure your first header cell has a value of “Famous Monster” (no quotes… note the capitalization!)

`

<body>
    
    <table border="1px">
        <thead>
            <tr>
                <th>Famous Monster </th>
                <th>Birth Year </th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>King Kong</td>
                <td>1933</td>     
            </tr>
            
            <tr>
                <td>Dracula</td>
                <td>1897</td>
            </tr>
            
            <tr>
                <td>Bride of Frankenstein</td>
                <td>1935</td>
            </tr>
        </tbody>
    </table>
    
</body>
`

Answer 50c6b9fe69a66a5236001311

7 votes

Permalink

take away spaces. `Famous Monster

Birth Year` This will work =)
points
over 11 years

4 comments

danessh over 11 years

This is right. The checker is very particular.

Maya McGill about 11 years

thats what i did

SophiaLuvsBunnys about 11 years

I had the same problem and this fixed it thanks!!! :D

Dane Eiselstein over 10 years

I am having the same problem

Answer 50c532d10364f1eed60001e9

1 vote

Permalink

I’m getting the same thing.

points
Submitted by Chris Brennan
over 11 years

1 comments

Chris Brennan over 11 years

Get rid of the space after “famous monster” and birth year”

Answer 50f8b1c4b440ff3d80000639

-1 votes

Permalink

points
Submitted by Abaddon23
about 11 years

Answer 50fa413fc95c003166000b74

-1 votes

Permalink

I got the same think as well :/ Oh well, I will take away the space and see if that doesn’t work as you all suggest.

points
Submitted by Rory Ross
about 11 years

Answer 50fc82152931425b500028dd

-1 votes

Permalink

I had the same issue and took out the spaces, but it didn’t work immediately. I had to hit submit several times after removing the spaces before it stopped giving me the error message.

points
Submitted by Phil Owen
about 11 years

Answer 50e66d58bf79fede28001058

-2 votes

Permalink

<html>
<head>
    <title>Table Time</title>
</head>

<body>
    
    <table border="1px">
        <thead>
        <tr>
            <th>Famous Monster</th>
            <th>Birth Year</th>
        </tr>    
        </thead>
        <tbody>
            <tr>
                <td>King Kong</td>
                <td>1933</td>     
            </tr>
            
            <tr>
                <td>Dracula</td>
                <td>1897</td>
            </tr>
            
            <tr>
                <td>Bride of Frankenstein</td>
                <td>1935</td>
            </tr>
        </tbody>
    </table>
    
</body>

try just copy-paste.

points
about 11 years

1 comments

Maya McGill about 11 years

thanks this was helpful