A Few Things for HTML Revision

Yesterday it was fantastic to see you all building your HTML website from scratch. Well done :-)


Here are a few things to remember:

To create a list, you will need the list container before the list items. The basic structure of a list is:

<ul>
    <li>item 1</li>
    <li>item 2</li>
    <li>item 3</li>
</ul>

Similarly, the structure of a table with 3 rows and 2 columns is:

<table>
    <tr><td> item 1 </td>td> item 2 </td></tr>
    <tr><td> item 3 </td>td> item 4 </td></tr>
    <tr><td> item 5 </td>td> item 6 </td></tr>
</table>

2 Responses to “A Few Things for HTML Revision”

  1. Annette Hales says:

    Hi Amanda

    Just letting you know I am logging on for the first time!!!

  2. Anne says:

    The table width with the borders is hard to remember, but thank heavens for Dreamweaver!

Leave a Reply