Welcome to our HTML help page!
|
| Home | HTML-Index | Basic HTML | HTML Structure |
|
<TABLE BORDER=10 WIDTH="75%" ALIGN=CENTER> <TR> <TH>The Table Header tag by default is bold and centered.</TH> </TR> <TR> <TD>This is a table data cell tag by default aligned left. </TD> </TR> <TR> <TD ALIGN=RIGHT>This text is aligned right.</TD> </TR> </TABLE> |
| The Table Header tag by default is bold and centered. |
|---|
| This is a table data cell tag by default aligned left. |
| This text is aligned right. |
|
<TABLE BORDER=10 WIDTH="75%" ALIGN=CENTER> <TR VALIGN=TOP> <TH ROWSPAN=3>George's Products</TH> <TH>Product Name</TH> <TH>Price per unit</TH> <TH>Units Available</TH> </TR> <TR> <TD>Art Print</TD> <TD>$9.99</TD> <TD>40</TD> </TR> <TR> <TD>Books</TD> <TD>$3.99</TD> <TD>75</TD> </TR> </TABLE> |
| George's Products | Product Name | Price per unit | Units Available |
|---|---|---|---|
| Art Print | $9.99 | 40 | |
| Books | $3.99 | 75 |