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

Tuesday, December 11, 2012

Codeyear: Stylin' Your Head


<!--sample solution-->

<html>
    <head>
        <title>Table Fable</title>
    </head>
   
    <body>
       
        <table style="border-collapse:collapse;">
            <thead>
                <tr>
                    <th colspan="2" style="color:red">Actors by Birth Year</th>
                </tr>
                <tr style="border-bottom:1px solid black;">
                    <th style="padding:5px;"><em>Actor</em></th>
                    <th style="padding:5px;border-left:1px solid black;"><em>Birth Year</em></th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td style="padding:5px;">Helen Mirren</td>
                    <td style="padding:5px;border-left:1px solid black;">1945</td>    
                </tr>
               
                <tr>
                    <td style="padding:5px;">Brad Pitt</td>
                    <td style="padding:5px;border-left:1px solid black;">1963</td>
                </tr>
               
                <tr>
                    <td style="padding:5px;">Ryan Gosling</td>
                    <td style="padding:5px;border-left:1px solid black;">1980</td>
                </tr>
            </tbody>
        </table>
       
    </body>

</html>

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts