0.0.4 • Published 5 years ago

@dfds-frontend/fonts v0.0.4

Weekly downloads
122
License
UNLICENCED
Repository
github
Last release
5 years ago

DFDS fonts

Unofficial library for DFDS

There is one font family with four variants: normal, bold, light and cursive. The font names follows the common weight naming convention

https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight#Common_weight_name_mapping

main font from CDN

load the font by inluding this in html

 <link rel="stylesheet"
   href="https://unpkg.com/@dfds-frontend/fonts/main/font.css">

or import it from css

<style>
  @import "https://unpkg.com/@dfds-frontend/fonts/main/font.css";
</style>

or load it dynamically from javascript

<script
  src="https://unpkg.com/@dfds-frontend/fonts/main/font.js">
</script>

apply the font in css

body {
  font-family: DFDS, sans-serif;
}
.font-bold {
  font-weight: bold;
}
.font-light {
  font-weight: 300;
}
.font-italic {
  font-style: italic;
}

use the font

<p>this is a normal font</p>
<p class="font-bold">this is a bold font</p>
<p class="font-light">this is a light font</p>
<p class="font-italic">this is a italic style</p>

main font from npm

  • npm install @dfds-frontend/fonts
  • the files are in node_modules/@dfds-frontend/fonts

load the font by inluding this in html

<link rel="stylesheet"
      href="node_modules/@dfds-frontend/fonts/main/font.css">

demo

preload fonts

 <link rel="preload"
       href="https://unpkg.com/@dfds-frontend/fonts/main/DFDS-Regular.woff2"
       as="font" type="font/woff2" crossorigin>

 <link rel="preload"
       href="https://unpkg.com/@dfds-frontend/fonts/main/DFDS-Bold.woff2"
       as="font" type="font/woff2" crossorigin>

<link rel="preload"
       href="https://unpkg.com/@dfds-frontend/fonts/main/DFDS-Light.woff2"
       as="font" type="font/woff2" crossorigin>

<link rel="preload"
       href="https://unpkg.com/@dfds-frontend/fonts/main/DFDS-Italic.woff2"
       as="font" type="font/woff2" crossorigin>

more

To see all the available CDN files go to

https://unpkg.com/@dfds-frontend/fonts/

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

6 years ago

0.0.1

6 years ago