Sunday, January 23, 2011

How to insert table

For whom using blog sites as a marketing channel of their product, sometime table is a very important to enable writer to tell customer in very easy way. Below are the example how the table look like.

Example;
Below table is our price list;
NoItemPrice
1.BlouseRM30.00
2.PijamasRM8.90
3.Scarf LinaRM9.90
4.SkirtRM6.90


How to do it?

On the posting tab, go to the "Edit HTML". Here are the sample which you can copy.
<table>
<tr> <td>No</td><td></td><td>Item</td><td></td><td>Price</td> </tr>
<tr> <td>1.</td><td></td><td>Blouse</td><td></td><td>RM30.00</td> </tr>
<tr> <td>2.</td><td></td><td>Pijamas</td><td></td><td>RM8.90</td> </tr>
<tr> <td>3.</td><td></td><td>Scarf Lina</td><td></td><td>RM9.90</td> </tr>
<tr> <td>4.</td><td></td><td>Skirt</td><td></td><td>RM6.90</td> </tr>
</table>
On the above code, there is no line border.
By do a minor alteration on the first line code from <table> to <table border=2>, you can get as below

NoItemPrice
1.BlouseRM30.00
2.PijamasRM8.90
3.Scarf LinaRM9.90
4.SkirtRM6.90

Regards

No comments:

Related Posts Plugin for WordPress, Blogger...