connect-fonts-opensans

0.0.5 • Public • Published

connect-fonts-opensans

Open Sans fontpack for connect-fonts.

Usage

  1. Include connect-fonts in a node module.
const font_middleware = require("connect-fonts");
  1. Include the font packs that you want to serve.
const font_pack  = require("connect-fonts-opensans");
  1. Add a middleware by calling the setup function.
    app.use(font_middleware.setup({
      fonts: [ font_pack ],
      allow_origin: "https://exampledomain.com"
    }));
  1. Add a link tag to include the font CSS.
<link href="/opensans-bold/fonts.css" type="text/css" rel="stylesheet">

Multiple fonts from the family can be included by using a comma separated list of fonts:

<link href="/opensans-bold,opensans-bolditalic,opensans-extrabold,opensans-extrabolditalic,opensans-italic,opensans-light,opensans-lightitalic,opensans-regular,opensans-semibold,opensans-semibolditalic/fonts.css" type="text/css" rel="stylesheet">

Available fonts:

  • opensans-bold
  • opensans-bolditalic
  • opensans-extrabold
  • opensans-extrabolditalic
  • opensans-italic
  • opensans-light
  • opensans-lightitalic
  • opensans-regular
  • opensans-semibold
  • opensans-semibolditalic

Locale-optimised font sets can be served by specifying the locale in the fonts.css URL.

<link href="/latin/opensans-bold/fonts.css" type="text/css" rel="stylesheet">

Available subsets:

  • latin
  • ca
  • cs
  • cyrillic
  • da
  • de
  • en
  • es
  • et
  • fr
  • hu
  • it
  • nl
  • pl
  • pt
  • ro
  • sk
  • sv
  1. Set your CSS up to use the new font by using the "Open Sans" font-family.
    body {
      font-family: 'Open Sans', 'sans-serif', 'serif';
    }

Font Info

Open Sans

Development Info

Author

License

Software: Licenced under version 2.0 of the MPL

https://www.mozilla.org/MPL/

Fonts: Licensed under version 2.0 of the Apache

http://www.apache.org/licenses/LICENSE-2.0

Readme

Keywords

none

Package Sidebar

Install

npm i connect-fonts-opensans

Weekly Downloads

166

Version

0.0.5

License

none

Last publish

Collaborators

  • stomlinson
  • fmarier
  • ozten
  • zaach
  • 6a68
  • seanmonstar