fonts not supported by browser
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
What to do if any font is not supported by browser?
krishna veer singh
-
What to do if any font is not supported by browser?
krishna veer singh
You can specify a number of fonts through styles or, better, CSS so that if the first font in the list isn't available it will try the next and so on. Like this: html, body { font-family: Verdana, Tahoma, Arial, Helvetica, 'MS Sans Serif'; ... etc, etc.