Tables Table borders (You can find more examples at the bottom of this page). Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). td stands for “table data,” and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms, other tables, etc. How the HTML code above looks in a browser: If you do not specify a border attribute, the table will be displayed without borders. Sometimes this can be useful, but most of the time, we want the borders to show. To display a table with borders, specify the border attribute: Header information in a table are defined with the <th> tag. The text in a th element will be bold and centered. How the HTML code above looks in a browser: Tables without borders Table headers Table with a caption Table cells that span more than one row/column Tags inside a table Cell padding Cell spacing The frame attribute
How to create tables in an HTML document.
How to specify different table borders.HTML Tables
Table Example
HTML Tables and the Border Attribute
HTML Table Headers
How to create tables without borders.
How to create table headers.
How to add a caption to a table.
How to define table cells that span more than one row or one column.
How to display elements inside other elements.
How to use cellpadding to create more white space between the cell content and its borders.
How to use cellspacing to increase the distance between the cells.
How to use the “frame” attribute to control the borders around the table.HTML Table Tags

