This is the print version of http://www.quackit.com/html/html_table_tutorial.cfm
This HTML table tutorial demonstrates how to create tables in HTML. It assumes you know how to create an HTML page. If you're not familiar with HTML try the HTML Tutorial.
In HTML, you create tables using the table tag, in conjunction with the tr and td tags. Although there are other tags for creating tables, these are the basics for creating a table in HTML.
| Type this HTML code... |
|
||
| It should result in something like this in your browser... |
|
You'll notice that we added a border attribute to the table tag. This particular attribute allows us to specify how thick the border will be. If we don't want a border we can specify 0 (zero). Other common attributes you can use with your table tag include width, cellspacing and cellpadding.
You can also add attributes to the tr and td tags. For example, you can specify the width of each table cell.
Widths can be specified in either pixels or percentages. Specifying the width in pixels allows you to specify an exact width. Percentages allows the table to "grow" or "shrink" depending on what else is on the page and how wide the browser is.
| Add some attributes to your table... |
|
||
| It should result in something like this in your browser... |
|
Many tables, particularly those with tabular data, have a header row or column. In HTML, you can use the th tag.
Most browsers display table headers in bold and center-aligned.
| Add a table header row... |
|
||||
| It should result in something like this in your browser... |
|
You can use the colspan attribute to make a cell span multiple columns.
| Add colspan... |
|
||||
| It should result in something like this in your browser... |
|
||||
Similar to what colspan is for columns, rowspan enables you to make a cell span multiple rows.
| Add rowspan... |
|
|||
| It should result in something like this in your browser... |
|
You can format your tables using Cascading Style Sheets (CSS). Using CSS, you can specify background colors, border colors, border styles etc. Also, although HTML has a tag for aligning table contents, and another for specifying a background color, these tags are deprecated. You are better off using CSS for these tasks.
| Let's add some styles... |
|
||||
| It should result in something like this in your browser... |
|
You can achieve some pretty amazing stuff with tables, especially when used in conjunction with CSS. If you'd like to learn more: