We can add tables in HTML Web Pages using <table>
tag. + we need to use <tr>
tag to indicate table row and <th>
to indicate table heading and also <td>
includes table data
While <th>
are bold in default. + we can add bgcolor
attribute to table to add background colour :
and We can align content in table td
tag using align
attribute
<tr align="center">
in default it is aligned to left.
Colspan & Rowspan
Here is how to Colspan :
As well as RowSpan :