HTML/CSS Cheatsheet

Tables

Tag or attribute name Actual formatted tag Description
Table <table></table> Create a table
tr <tr></tr> Create a table row
td <td></td> Create a table cell/data
Thead <thead></thead> Create a table header
Tbody <tbody></tbody> Create a table body
Tfoot <tfoot></tfoot> Create a table footer

Table example

<table>
    <thead>
        <tr>
            <td>Tag or attribute name</td>
            <td>Actual formatted tag</td>
            <td>Description</td>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Table</td>
            <td class="code">&lt;table&gt&lt;/table&gt</td>
            <td>Create a table</td>
        </tr>
    </tbody>    
</table>

Lists

Tag or attribute name Actual formatted tag Description
Unordered list <ul></ul> Create an unordered list
Ordered list <ol></ol> Create an ordered list
List item <li></li> Create a list item

List example

<ol>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Milk</li>
</ol>