help
NOTE:
50 This page was guided for historical Gamepedia wikis that may contain outdated information. For Fandom's up-to-date information, see Help:How to import Google Fonts.

Sometimes a wiki can benefit from the judicious use of a custom font for certain select text elements.

Where should I use custom fonts?

Custom fonts should be used sparingly. Using a complex designer font for all of a wiki's main content text can render it difficult to read at standard content sizes.

In general, ornate fonts should be limited to a wiki's larger text elements, like the frontpage welcome text, large navigation links ("buttons"), page titles, and/or section headers.

Simpler sans-serif type fonts can be used more liberally.

Which fonts can I use?

If you know of a font you want to use that is not listed at either of those locations, and the font has been released for free use, you may request that it be installed in Gamepedia's Font Manager by contacting a wiki manager and sending them the font source files, along with a link that proves the font has been released for free use.

Individually-licensed fonts

While most fonts listed in Gamepedia's Font Manager are freely usable on any wiki, those listed below are licensed only for select wikis.

These may only be used on the Minecraft Wiki:

These may only be used on the Runemaster Wiki:

Google Fonts

Google Fonts do not need to be uploaded to Gamepedia. To use a Google font on a wiki, follow these steps:

  1. Go to https://fonts.google.com and find a suitable font for your purposes.
  2. In a new browser tab's URL line, paste https://fonts.googleapis.com/css?family=, and add your chosen font's name to the end of the line. Browse to the resulting URL.
  3. Copy the CSS displayed into the wiki's CSS page.
  4. Use the font in your CSS styles with font-family: "Coda";.

Examples

@font-face {
    font-family: 'Coda';
    font-style: normal;
    font-weight: 400;
    src: local('Coda Regular'), local('Coda-Regular'), url(https://fonts.gstatic.com/s/coda/v13/SLXHc1jY5nQ8FUUGaw.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat-Regular'), url("https://fonts.gstatic.com/s/montserrat/v5/zhcz-_WihjSQC0oHJ9TCYBsxEYwM7FgeyaSgU71cLG0.woff") format('woff');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat-Bold'), url("https://fonts.gstatic.com/s/montserrat/v5/IQHow_FEYlDC4Gzy_m8fcgFhaRv2pGgT5Kf0An0s4MM.woff") format('woff');
}