user3066571
user3066571

Reputation: 1471

HTML White Color Font Shows Yellow

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

Answers (2)

Ry-
Ry-

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

Mark
Mark

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

Related Questions