0.0.2 • Published 10 years ago

connect-fonts-mavenpro v0.0.2

Weekly downloads
-
License
-
Repository
github
Last release
10 years ago

connect-fonts-mavenpro

Maven Pro 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-mavenpro");
  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="/mavenpro-black/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="/mavenpro-black,mavenpro-bold,mavenpro-medium,mavenpro-regular/fonts.css" type="text/css" rel="stylesheet"/ >

Available fonts:

  • mavenpro-black
  • mavenpro-bold
  • mavenpro-medium
  • mavenpro-regular

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

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

Available subsets:

  • latin
  1. Set your CSS up to use the new font by using the "Maven Pro" font-family.
    body {
      font-family: 'Maven Pro', 'sans-serif', 'serif';
    }

Font Info

Maven Pro

  • Copyright: Copyright (c) 2011 by Vissol Ltd. All rights reserved.

Development Info

Author

License

Software: Licenced under version 2.0 of the MPL

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

0.0.2

10 years ago

0.0.1

10 years ago