+ 1
Guys pls i need. Someone to put me through on hw to use a table and a colspan in html
html
3 Answers
+ 2
have you done the html course on here? it has a section on it
+ 1
yea but i find it tough to understand
0
https://www.sololearn.com/learn/HTML/1033/
Mayowa It's not so tough to understand!!! Please try to understand it with perseverance!! Don't lose your heart.....
<!--you are going to create a table so write a table tag-->
<table>
<tr>
<td></td>
<td></td>
</tr>
</table>
<!--first column finished-->
If you want to Color them use the "bgcolor" inside <td>
ex: <td bgcolor="red">!
for using colspan:
<td colspan="2"></td>