9. Style That Head

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

https://www.codecademy.com/courses/web-beginner-en-f8mcL/1/4?curriculum_id=50579fb998b470000202dc8b#
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
This is the error I get: Oops, try again. Surround ‘Famous Monster’ with tags! I clearly have the em and /em tags. Please help.

```
<table style="border-collapse:collapse;">
    <thead>
        <tr>
            <th colspan="2" style="color:red">Famous Monsters by Birth Year</th>
        </tr>
        <tr style="border-bottom:1px solid black;">
            <th style="padding:5px;"><strong><em>Famous Monster</em></strong></th>
            <th style="padding:5px;border-left:1px solid black;"><em>Birth Year</em></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>
<do not remove the three backticks above>

<strong><em>Famous Monster</em></strong>

remove <strong> tag
you are not told to do so

2 Likes

Thank you so much! It worked, thank you. I feel stupid for not seeing that before.

<body>

    <table style="border-collapse:collapse;">
        <thead>
            <tr>
                <th colspan="2" style="color:red">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>
                <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>

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