HTML provides an important feature that enables us to arrange the layout of a web page. This can be done using <table> ... </table>
<table> ... </table>
These tags are used to create a table which inturn includes some important tags which make up the table. i.e., <tr> ... </tr> , <td> ... </td>, <th> ... </th>, <tbody> ... </tbody> These tags will be ignored by the browser if they are not contained with in <table> ... </table> tags.
Attributes of table tag:
border:
Used to specify the width of the border to be drawn around the table. By default its value is zero i.e, no border is drawn.
align: Used to specify the alignment of the table in the web page. Possible values for this attribute are Left, Right and Center.
cell padding:
Used to specify the space between the cell's border and content.
cell spacing:
Used to specify the space between cells with in the table.