Quotes help make search much faster. Example: "Practice Makes Perfect"

Tuesday, December 11, 2012

Codeyear: Giving It a Title


<!--sample solution-->

<html>
    <head>
        <title>Table Fable</title>
    </head>
   
    <body>
       
        <table border="1px">
            <thead>
                <tr>
                    <th colspan="2">Actors by Birth Year</th>
                </tr>
                <tr>
                    <th>Actors</th>
                    <th>Birth Year</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>Helen Mirren</td>
                    <td>1945</td>    
                </tr>
               
                <tr>
                    <td>Brad Pitt</td>
                    <td>1963</td>
                </tr>
               
                <tr>
                    <td>Ryan Gosling</td>
                    <td>1980</td>
                </tr>
            </tbody>
        </table>
       
    </body>

</html>

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts