Editorial / Best Answer
psuresh1982
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.
How is headings and text size made larger or smaller as needed by user in HTML?
Profile Answers by fred Questions by fred
Questions by fred answers by fred
Editorial / Best Answer
psuresh1982Profile Answers by psuresh1982 Questions by psuresh1982
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.
Related Answered Questions
Related Open Questions