Making a table
Name | Price |
Pumpkin | $10 |
Cake | $100 |
<table style="width: 90%;" border="3">
<tbody>
<tr>
<td style="width: 50%;"><u>Name</u></td>
<td><u>Price</u></td>
</tr><tr>
<td>Pumpkin</td>
<td>$10</td>
</tr><tr>
<td>Cake</td>
<td>$100</td>
</tr>
</tbody>
</table>
Can't you just copy an excel spreadsheet?
^
WoM Coins: 3343
Well that was very informative, thanks.