Table heads! <th>Famous Montser</th> Ops, try again!

https://www.codecademy.com/en/courses/web-beginner-en-f8mcL/1/2?curriculum_id=50579fb998b470000202dc8b

Oops, try again! Make sure your first header cell has a value of ‘Famous Monster’ (no quotes…)



<html>
    <head>
        <title>Table Time</title>
    </head>
    
    <body>
        
        <table border="1px">
            <thead>
                <tr>           
                    <th>Famous Montser</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> 


You misspelled word, you wrote Montser change it to Monster it should work.

thanks! I have just seen it… hahahha

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