Results 1 to 4 of 4

Thread: Use a Custom Font HELP

  1. #1
    Join Date
    Nov 2011
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Use a Custom Font HELP

    Hi!!!
    Happy New year!!!

    I have this site http://www.theplatform.gr and i want to buy this font, which is FUTURA and make it with this font. Can somebody help me how to use a custom font to my website? Will it be ok in all browsers??

  2. #2
    Join Date
    Jan 2012
    Location
    London, United Kingdom
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Using CSS and the @fontface attribute is what you are looking for I believe.
    Code:
    @font-face
    {
    font-family: myFirstFont;
    src: url('your_font_file.ttf'),
         url('your_font_file.eot'); /* IE */
    }
    The @font-face rule is supported in all major browsers.

    Internet Explorer only supports .eot type fonts.

    Hope this helps.

  3. #3
    Join Date
    Jan 2012
    Location
    London, United Kingdom
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Another note in which may help you is using font face generator's available online. These are useful when your font's are not in both .ttf and .eot formats
    Try taking a look at Font Squirrel if so. I know it's been useful to myself in the past.

  4. #4
    Join Date
    Nov 2011
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thaaank you very much!
    i'll try it and i hope to be super!!!

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
  •