HTML Tutorial
HTML Forms
HTML Graphics
HTML Media
HTML tables allow web developers to organize data into rows and columns.
| Company | Contact | Country | 
|---|---|---|
| Alfreds Futterkiste | Maria Anders | Germany | 
| Centro comercial Moctezuma | Francisco Chang | Mexico | 
| Ernst Handel | Roland Mendel | Austria | 
| Island Trading | Helen Bennett | UK | 
| Laughing Bacchus Winecellars | Yoshi Tannamuri | Canada | 
| Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy | 
A table in HTML consists of table cells inside rows and columns
                            <table>
 
                            <tr>
    <td>Emil</td>
                                <td>Tobias</td> 
   
                            <td>Linus</td>
                             
                            </tr>
</table>