Welcome to our HTML help page!
|
| Home | HTML-Index | Basic HTML | HTML Structure |
|
<TABLE BORDER=3 ALIGN=CENTER>
<TR> <TH COLSPAN="3">New Products</TH> </TR> <TR> <TH>Product Name and Description</TH> <TH>Price Per Unit</TH> <TH>Units Available</TH> </TR> <TR> <TD>Blouse - red silk</TD> <TD>$19.95</TD> <TD>130</TD> </TR> <TR> <TD>Pants - black cotton</TD> <TD>$29.98</TD> <TD>100</TD> </TR> </TABLE> |
| New Products | ||
|---|---|---|
| Product Name and Description | Price Per Unit | Units Available |
| Blouse - red silk | $19.95 | 130 |
| Pants - black cotton | $29.98 | 100 |
|
<TABLE BORDER=3 ALIGN=CENTER>
<TR> <TH ROWSPAN="3">George's Products</TH> <TH>Product Name and Description</TH> <TH>Price Per Unit</TH> <TH>Units Available</TH> </TR> <TR> <TD>Blouse - red silk</TD> <TD>$19.95</TD> <TD>130</TD> </TR> <TR> <TD>Pants - black cotton</TD> <TD>$29.98</TD> <TD>100</TD> </TR> </TABLE> |
| George's Products | Product Name and Description | Price Per Unit | Units Available |
|---|---|---|---|
| Blouse - red silk | $19.95 | 130 | |
| Pants - black cotton | $29.98 | 100 |
|
<TABLE BORDER=3 ALIGN=CENTER>
<TR> <TD COLSPAN="4"ALIGN=CENTER>text or image here</TD> </TR> <TR> <TD ALIGN=CENTER>text or image here</TD> <TD COLSPAN="2" ROWSPAN="2" ALIGN=CENTER>text or image here</TD> <TD ALIGN=CENTER>text or image here</TD> </TR> <TR> <TD ALIGN=CENTER>text or image here</TD> <TD ALIGN=CENTER>text or image here</TD> </TR> </TABLE> |
| text or image here | |||
| text or image here | text or image here | text or image here | |
| text or image here | text or image here | ||