Oops, try again. Surround 'Famous Monster' with <em></em> tags!

The instructions are as follows: “Make the “Famous Monster” and “Birth Year” labels emphasized (i.e. make them italicized).”

Not sure what I keep doing wrong :frowning:

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>

``` Table Time
<body>
    
    <table style="border-collapse:collapse;">
        <thead>
            <tr>
                <th style="color:red"><em>Famous Monster</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>
```

Hello @laboheme125,

Can you please post your entire code? Thanks

I went ahead and posted it.

You have italicised the wrong instance of Famous Monsters and Birth Year. You’re meant to italicise the table headings. <th style="padding:5px;"><em>Famous Monsters</em></style> Do this for all the instructions and you’ll be good to go!

1 Like

Thank you so much! I really appreciate it.

1 Like

No worries, @laboheme125. If you feel satisfied with my response, please mark my post down as the solution. Keep coding hard :laughing:!

1 Like

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