Reputation: 1471
I'm trying to edit an HTML page's color fonts in a table. I've been asked to give it a red background and white font. Problem is, when I do the white, it just shows up as yellow on the page. I don't know what I'm doing wrong, honestly I'm not terribly great at this, we just have no one else.
Here's the table (only worrying about the first cell right now)
<table border="3">
<tr>
<th><td bgcolor="#B22222;"><font color="#FFFFFF;" size="+1">Queue</font></th>
</tr>
Upvotes: 0
Views: 1075
Reputation: 224906
The semicolon is playing tricks on you. Take it out.
<font color="#FFFFFF" size="+1">Queue</font>
Now use CSS or something. CSS doesn’t think Chuck Norris is a colour.
<h2>Queue</h2>
h2 {
background-color: #b22222;
color: white;
}
Upvotes: 3
Reputation: 4873
Thats because it's white on red background,and possibly low quality monitor. The high contrast, horribly color scheme is create issue for you. Thats my guess anyways.
Upvotes: 0