How is headings and text size made larger or smaller as needed by user in HTML?

Questions by fred   answers by fred

Editorial / Best Answer

psuresh1982  

  • Member Since Sep-2006 | Oct 24th, 2007



1. You can use FONT tag in that particular place.
2. You can apply CSS Class. In that CSS file you will use FONT tag.

For example,

1. <font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="#000000">
2. Inside the CSS class you can use the following.

 .txtnorm
{
 font-family:Verdana, Arial, Helvetica, sans-serif;
 font-size:12px;
 font-weight:bold;
 color:#000000;
}

According to your requirement you can change the color and size of the font. It is best you can use CSS Class.

Showing Answers 1 - 3 of 3 Answers

psuresh1982

  • Oct 24th, 2007
 


1. You can use FONT tag in that particular place.
2. You can apply CSS Class. In that CSS file you will use FONT tag.

For example,

1. <font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="#000000">
2. Inside the CSS class you can use the following.

 .txtnorm
{
 font-family:Verdana, Arial, Helvetica, sans-serif;
 font-size:12px;
 font-weight:bold;
 color:#000000;
}

According to your requirement you can change the color and size of the font. It is best you can use CSS Class.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions