Results 1 to 5 of 5

Thread: Need to embed font with web site

  1. #1
    Join Date
    Oct 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Need to embed font with web site

    Problem: I had used full of verdana font in my web site, in case of the client machine not having verdana font it automatically using the web safe default font as Times New Roman.

    Solution looking for: In this case my web page should be view/appear with Verdana. How can I incorporate the verdana (or what ever I wish) font with source code OR advice me any alternate solution for the design issue.

    Look forward your kind responses.
    Thanks in advance!

    Thirilog

  2. #2
    Join Date
    May 2008
    Posts
    8
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Hi

    In your CSS if you set your font as the Verdana family you should have no issues, if they don't have verdana it will set it to a sans-serif, which everybody has .

    for example

    CSS
    Code:
    p {
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	color: #000;
    	font-weight: normal
    }
    Hope that helps

  3. #3
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Note: Verdana really shouldn't be used on the Web.

    There have been a couple of attempts at embedding fonts into pages throughout the years, but none have really taken off — mostly because they weren't bandwidth-efficient. The answer, then, is sadly that no, you can't do this. You might try an image if you just need it for headings, but under no circumstances use an image for the main text of the page, and don't forget to provide an alt text.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  4. #4
    Join Date
    Oct 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Need to embed font with web site

    Thanks for your response!

    The reason I’m decided to embed font into the web application is:
    The end user of our product (web application—internal purpose) is composers (Macintosh users—working in font based jobs, they have been using limited fonts as per the job requirement); we can’t expect them to have the font which we used in our web application.

    So we are in need to embed the Verdana font onto our web application itself.

    Can you kindly help me out?

  5. #5
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Quote Originally Posted by myself
    The answer, then, is sadly that no, you can't do this. You might try an image if you just need it for headings, but under no circumstances use an image for the main text of the page, and don't forget to provide an alt text.
    If the font is vital enough to the usage of the page, and your users have no alternative, then you could offer it for download and give installation instructions.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •