Monday, December 7, 2015

Reflection 10

To be honest, this week saw little progress in my journey of learning how to code. In class, I only got to work on tables, which are tedious because you have to manually input the number of cells.
For example, the following lines of code create a table with 3 rows and two columns, a lot of lines for something so simple.
   <table border="1px">
            <thead>
                
            </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>
I feel as though I could've accomplished more this week but I was away at a tournament this whole weekend and was unable to work at home, which is where a large portion of my learning comes from. I hope to make up for the time I lost this week.

No comments:

Post a Comment