0
How to change color for whole table
3 Antworten
+ 1
study some css dude that's one of the simplest things to do. i just realized you just started the html course. don't mind this things right now, later on you try the css course and you'll learn all of this
0
thanks bro
0
as Will said css is an easier way to define those visual but in early html you can use bgcolor inside your table tag like below
<table bgcolor="yellow">
<tr>
<th>Month</th>
<th>income</th>
</tr>
<tr>
<td>January</td>
<td>$5000</td>
</tr>
</table>