Help Webmaster Tutoring Lessons Technology Training Support Programming Lessons Advice Adobe Learning Training Programming Lessons Training PC Tutorials Advice Laptop Teaching
Office Software - Excel Software - Microsoft Software - QuickBooks Software - Visual Software - Comptuer Software - Web Software - Sharepoint Software - Photoshop Software - Mac Software - QuarkXPress Software - management Software - Project Software - Learn Software - email Software - Network Software - Linux Software - Unix Software - Work Software - Net Software - ASP Software - PHP Software - HTML Software - CMS Software - XML Software - Mobile Software -
CDs Design Instruction Lessons PC Help Education Workstation Training Online Technology Education Teaching Business Online Lessons Laptop CDs Help Graphics Help

Making Table in HTML how to make HTML tables

Making Tables
Table attribute are set in mostly the same way as other attribute. You can set them pixels or as a percentage
Don’t forget to properly calculate your rows and colums with colspan and rowspan
< table></table> Makes a table
• <table border=?> Border around table cells
• <table cellspacing=?> Space between table cells
• <table cellpadding=?> Space between a cell's border and its contents
• <table width=?> width of table
< tr></tr> For each row in a table
• <tr align=?><tr valign=?> Alignment of cells
< td></td> Makes a individual cell in a row
• <td align=?><td valign=?> Alignment of cells
• <td colspan=?><td rowspan=?> For spanning more than one cell size
Example: <table width="100" border="1" cellspacing="3" cellpadding="3">
< tr> <td>1</td><td>2</td><td>3</td></tr>
< tr> <td rowspan="2">4</td> <td colspan="2">5</td></tr>
< tr> <td>6</td><td>7</td></tr>
< /table>