+ 1
I want to change the color of colum text in html table
When i am trying change text color in colum text its not working while working with html.
6 Answers
+ 2
Thank you Taste for the suggestion I go through it
+ 1
where's the code ?
+ 1
Niranjan Vasagiri font tag is not supported in HTML5. Use CSS instead. For now the below code will work fine
<html>
<head>
<title>Table Tages</title>
</head>
<body>
<table>
<tr>
<td bgcolor="skyblue" width="100%">
<font color="white">Header</font>
</td>
</tr>
</table>
</body>
</html>
https://www.sololearn.com/Course/CSS/?ref=app
0
<html>
<head>
<title> Table Tages</title></head>
<body>
<font color="white" face="arial">
<table>
<tr>
<td bgcolor="skyblue" width="100%">Header</td>
</tr>
</table>
</font>
</body>
</html>
0
you can also go all out css
<table style="color: white">
...
<td style="background-color: skyblue">
0
Thank you adithya