• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Downloaded font does not show up on previewed site

New Here ,
Feb 05, 2015 Feb 05, 2015

Copy link to clipboard

Copied

Hi,

I have trouble understanding how to make sure the downloaded font exists in the files so that when its uploaded it can reveal the same font on any platform. Right as of now its being replaced by a typical font automatically.

Thanks

AL

TOPICS
Newbie Corner

Views

280

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Feb 13, 2015 Feb 13, 2015

Copy link to clipboard

Copied

LATEST

Hi!

As long as you have downloaded the font and placed it anywhere on your site, all you need to make sure is that it's properly referenced in your stylesheets, something like:

@font-face {

  font-family: 'SomeName';

  src: url('/somefolder/fonts/FONTNAME.TTF') format('truetype');

  src: url('/somefolder/fonts/FONTNAME.eot') format('truetype'),

  src: url('/somefolder/fonts/FONTNAME.woff') format('woff');

  font-weight: normal;

  font-style: normal;

}

Here's some useful resources:

The Essential Guide to @font-face

Adding Custom Fonts Using Typekit | Creating for Mobile and Tablets | Adobe TV

Kind Regards,

Alex Pavelescu

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines