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

0 points
Submitted by Fisehaye
almost 9 years

Please,help!!why am i seeing this?(Oops, try again. Surround 'Famous Monster' with <em></em> tags!)

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

<body>
    
    <table style="border-collapse:collapse;">
        <thead>
            <tr>
                <th colspan="2"style="color:red"><em>Famous Monsters</em> by <em>Birth Year</em></th>
            </tr>
            <tr style="border-bottom:1px solid black;">
                <th style="padding:5px;">Famous Monster</th>
                <th style="padding:5px;border-left:1px solid black;">Birth Year</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td style="padding:5px;">King Kong</td>
                <td style="padding:5px;border-left:1px solid black;">1933</td>     
            </tr>
            
            <tr>
                <td style="padding:5px;">Dracula</td>
                <td style="padding:5px;border-left:1px solid black;">1897</td>
            </tr>
            
            <tr>
                <td style="padding:5px;">Bride of Frankenstein</td>
                <td style="padding:5px;border-left:1px solid black;">1944</td>
            </tr>
        </tbody>
    </table>
    
</body>

Answer 55334096d3292fdec70003a8

2 votes

Permalink

You are trying to emphasise the incorrect words. You need to emphasise the ‘colum headings, not the colspan headings.

        <thead>
            <tr>
                <th style="color:red"; colspan="2">Famous Monsters by Birth Year</th>
            </tr>
            <tr style="border-bottom:1px solid black;">
                <th style="padding:5px"><em>Famous Monster</em></th>
                <th style="padding:5px;border-left:1px solid black;"><em>Birth Year</em></th>
            </tr>
        </thead>
        <tbody>
            <tr>
points
Submitted by merztalk
almost 9 years

1 comments

Pareen Patel over 8 years

ahhh man, i was doing the same thing wrong! and getting really frustrated. Whoops. #taxi