<col></col>
align   span

The <col> tag is used to specify text alignment within table columns.

<col align="">

   Description
   The align attribute specifies the text alignment within the column group. Possible values are left, right, center, and justify.
Code
   <col align="center">YOUR TEXT HERE</col>

<col span="">

   Description
   The span attribute is used to define how many table columns will be affected by the <col> tag
Code
   <col span="5">YOUR TEXT HERE</col>
/body>