Fonts

  • Thread starter Thread starter BobLaughland
  • Start date Start date
B

BobLaughland

Is there a way in ASP .NET to use non standard fonts?

Or if not which fonts do you think look the classiest. I know that is a
non specific question, but just throw some out there for me to try.

Thanks.
 
Bob,
Yes you can use any font you want. Put a list of names in the font names
style property. Browser is supposed to display using fonts in the font names
list. End your list of names with a generic name for maximum compatibility.
See the CSS spec for more information.
http://www.w3.org/TR/CSS1#font-family

Good Luck
DWS
 
i think these fonts look the best:

Verdana, Georgia, Tahoma, Trebuchet

if using asp.net 2.0, add a theme, put a style sheet in the theme, put
in text like this:

body
{
font-family: Georgia, serif;
}

[if you want to use Georgia]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top