HTML coloring text in tables

Neomega

Deity
Joined
Feb 9, 2002
Messages
11,261
I cant seem to figure oiut how to color the text inside a table.

Anyone know how off the top of their heads?
 
Why don't you just use <font> tag?

With this code:
<table border=1 cellpadding=6>
<tr>
<td>
<font color=red>Czerwony</font>
</td>
<td>
<font color=blue>Niebieski</font>
</td>
</tr>
<tr>
<td>
<font color=black>Czarny</font>
</td>
<td>
<font color=green>Zielony</font>
</td>
</tr>
</table>

I recieved this effect:
mpz_html_font.jpg
 
Thanks for the suggerstion, but styling was more what I was looking for, I am super amateur at this stage so I hadn't used styles yet.... but using the font tag can only do it one cell of the table at a time, and this table is quite large.... (100's of cells)
 
Back
Top Bottom