Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

Kalmuna Accounts

All usernames and passwords for these accounts are in LastPass.

Paid (no Kalamuna account)


Using Web Fonts

...

how we

 For Drupal

Probably the easiest way to do this in Drupal

self-hosting vs 3rd party CDN

Using a module vs hardcoding in styles.

 is to use the @font-your-face module. It provides an admin interface for managing web fonts and has support for the following 3rd party providers:

If you prefer to include 3rd party web fonts without @font-your-face module you should be able to find instructions on how to include the web font from your css at each of the respective 3rd party websites.

Self hosting

If you have a copy of a web font that you want to use and intend to host it along with the site then you can use a Sass mixin like the following:

Code Block
languagesass
@mixin set-font-face($font-family, $file-path, $weight: normal, $style: normal ) {
  @font-face {
    font-family: $font-family;
    src:
      url(#{$file-path}.woff) format('woff2'), /* Chrome 26+, Opera 23+ */
      url(#{$file-path}.woff) format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    font-weight: $weight;
    font-style: $style;
    font-stretch: none;
  }
}


Web fonts in email

via http://templates.mailchimp.com/design/typography/

...