HELP: with html fill color

FrugalGuy

Senior member
Jan 3, 2002
890
0
0
I know this has to be simple, but I can't find the script or can't get the script to work...

I just want a black background with white text in html script. Any body know how to do this?
 

FrugalGuy

Senior member
Jan 3, 2002
890
0
0
thanks...for some reason, the program won't let me use the bgcolor tags. So, I guess I need to add a border to the white text and then fill it with black. Any help with that
 

zimu

Diamond Member
Jun 15, 2001
6,209
0
0
Originally posted by: FrugalGuy
thanks...for some reason, the program won't let me use the bgcolor tags. So, I guess I need to add a border to the white text and then fill it with black. Any help with that

what program ar eyou using?!?! have you ever programmed HTML?

try using a table.

<table width = 100% height = 100% bgcolor = black>
<tr><td>
<font color = white>WHITE TEXT</font>
</td></tr>
</table>

that'll create a table which covers 100% of the screen with white text, top left of the screen.

although bgcolor will definitely work... once again the program you're using probably sucks.