FUNDAMENTALS OF COMPUTER

WEB BROWSERS TECHNOLOGY

WHAT IS WEB TECHNOLOGY

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
How do you change the font color with CSS?
A
font-color:green;
B
color:green;
C
change-font-color:green;
D
fontcolor=green;
Explanation: 

Detailed explanation-1: -Simply add the appropriate CSS selector and define the color property with the value you want. For example, say you want to change the color of all paragraphs on your site to navy. Then you’d add p color: #000080; to the head section of your HTML file.

Detailed explanation-2: -We use the style attribute to set the font color in HTML. The style attribute specifies an inline style for an element, with the CSS property color. The attribute is used with the HTML <p> tag, with the CSS property color. HTML5 do not support the <font> tag, so the CSS style is used to add font color.

Detailed explanation-3: -<FONT COLOR= > To change some of the text in the HTML document to another color use the FONT COLOR Tag. To change the color of the font to red add the following attribute to the code to the <FONT COLOR=” “> tag. #ff0000 is the color code for red.

There is 1 question to complete.