@dfds-frontend/fonts

0.0.4 • Public • Published

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/

Readme

Keywords

Package Sidebar

Install

npm i @dfds-frontend/fonts

Weekly Downloads

165

Version

0.0.4

License

UNLICENCED

Unpacked Size

978 kB

Total Files

28

Last publish

Collaborators

  • kunukn
  • kdichev
  • kunyk-dfds