answersLogoWhite

0

Font color is the color of a font on a computer screen, on a printed document, or in HTML/CSS/web design (the website's font color). Hope that helps.

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Engineering

What is the difference between a fill color and font color?

A fill color fills the background as much as it is told to. Font color changes the color of the font.


Which property is used to change the font of an element in css?

Using CSS, you can change the background color using the background-color property.To set the body background in an HTML document, you'd use code that looked like this:body { background-color: rgb ( 255, 255, 255 ); }which would set the color to white.You can use any CSS color definition, a named color, a hexadecimal value, rgb, or rgba.


Can you set background color using font tag?

<font style="background-color: red;">this text will have a red background</font>


What is it called in excel when you change the font style to bold increase the font size and change the font color?

This is referred to as "font formatting."


How do you create biodata in table format using HTML?

<html> <head> <title> BIO-DATA </title> <body> <table border="1" width="600" align="center" bgcolor="yellow"> <caption align="center">BIO-DATA</caption> <tr> <td colspan="2" align="center"><img src="Photo-2128.jpg" height="350" width="300"> </td> </tr> </table> <table border="1" width="600" align="center" bgcolor="green"> <tr> <font face="verdana" color="red"> <td>NAME:</td> <td><font color="white">Ashis Kumar Sharma</font></td> </font> </tr> <tr> <font face="verdana"> <td colspan="2" align="center" height="40" bgcolor="yellow"><font color="green"><b>ADDRESS</b></font></td> </font> </tr> <tr> <font face="verdana"> <td>CITY:</td> <td><font color="white">Chakradharpur</font></td> </font> </tr> <tr>k <font face="verdana"> <td>STATE:</td> <td><font color="white">Jharkhand</font></td> </font> </tr> <tr> <font face="verdana"> <td>PIN-CODE</td> <td><font color="white">833102</font></td> </font> </tr> <tr> <font face="verdana"> <td>EMAIL:</td> <td><font color="white">xxxxxxx@gmail.com</font></td> </font> </tr> <tr> <font face="verdana"> <td>PHONE:</td> <td><font color="white">95465768878</font></td> </font> </tr> <tr> <font face="verdana"> <td>MOBILE NO.:</td> <td><font color="white">9876543210</font></td> </font> </tr> <tr> <font face="verdana"> <td>D.O.B:</td> <td><font color="white">18/6/1991</font></td> </font> </tr> <tr> <font face="verdana"> <td>GENDER:</td> <td><font color="white">Male</font></td> </font> </tr> <tr> <font face="verdana"> <td>COLLEGE:</td> k<td><font color="white">Kiit University</font></td> </font> </tr> <tr> <font face="verdana"> <td>DEPARTMENT:</td> <td><font color="white">MCA</font></td> </font> </tr> <tr> <font face="verdana"> <td colspan="2" align="center" height="40" bgcolor="yellow"><font color="green"><b>EDUCATIONAL QUALIFICATION</b></font></td> </font> </tr> <tr> <font face="verdana"> <td>10th</td> <td><font color="white">58.2</font></td> </font> </tr> <tr> <font face="verdana"> <td>12th</td> <td><font color="white">60</font></td> </font> </tr> <tr> <font face="verdana"> <td>B.Sc.(C.A)</td> <td><font color="white">79.2</font></td> </font> </tr> <tr> <font face="verdana"> <td>MCA</td> <td><font color="white">7.85 CGPA</font></td> </font> </tr> <tr width="30"> <font face="verdana"> <td>EXTRA ACTIVITY:</td> <td><font color="white">Cricket,Art</font></td> </font> </tr> <tr width="30"> <font face="verdana"> <td>PROFESSIONAL QUALIFICATION:</td> <td><font color="white">C,C++,Data Structure,Html,Php</font></td> </font> </tr> <tr width="30"> <font face="verdana"> <td>KNOWN LANGUAGE:</td> <td><font color="white">English,Hindi</font></td> </font> </tr> <tr width="30"> <font face="verdana"> <td>HOBBY:</td> <td><font color="white">Listening Music,Playing Cricket</font></td> </font> </tr> </table> </body> </html>

Related Questions

Defines the color of characters?

Font color


What is the difference between a fill color and font color?

A fill color fills the background as much as it is told to. Font color changes the color of the font.


What is the definition of casual font?

Every font is different and individual. There is no 'casual' font.


Can you change the font color on Neopets?

Yes. Here is the coding. <font c="color"></font>


Which property is used to change the font of an element in css?

Using CSS, you can change the background color using the background-color property.To set the body background in an HTML document, you'd use code that looked like this:body { background-color: rgb ( 255, 255, 255 ); }which would set the color to white.You can use any CSS color definition, a named color, a hexadecimal value, rgb, or rgba.


What is cell font color for Excel?

the font color of one of the little boxes


How do you change font color on your email letter?

set the color:#000000; property in css to change the color of the font.


Can you set background color using font tag?

<font style="background-color: red;">this text will have a red background</font>


What is the meaning of font color in Microsoft Word?

A font color mean the color of the typeface on the screen or the print that the printer puts out. The font color can be controlled with the computer software.


How can you change the color of word on MySpace?

<font color= deeppink> to do that you would have to put <font color= COLOR HERE> before the word you want to be that color :]


How do you change the font color on myspace?

There is a button that says change color font, where you click it and then pick what ever color you want to be in.


What defines the color of characters in excel?

The cell format and font format.The following is a very simple macro that will change the font in the selected cell to blue:Sub Make_Blue'With Selection.Font.Color = -4165632.TintAndShade = 0End WithEnd SubFrom the macro, you can see that the VB definition of color is numeric and is stored as Font.Color.