1. Home
  2. /
  3. Blog
  4. /
  5. tables in html
HTML

tables in html

September 27, 2022 1 min read 2,305
tables in html

<table align="center" border="2">
	
<tr>   
<td bgcolor="red">  one</td>
<td>two</td>
<td>three</td>

  </tr>
<tr>
	
<td>  one</td>
<td colspan="2">two</td>
<td>  <a href="https://www.google.com">google</a> </td>

</tr>

</table>
Share:
Read next

Related articles