8/15 name your table

Table Time
<body>
    
    <table border="1px">
        <thead>
            <tr>
                <th>Famous Monsters by Birth Year</th>
            </tr>
            <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>

what is your question? You should add colspan to <th>Famous Monsters by Birth Year</th> like the instructions say

I know but where that’s what I didn’t understand?

i gave you the line in which you need to add the colspan:

and just like style, colspan is an attribute which you can add to the opening tag, here is an example of style:

<th style="">

colspan works the same