Use on the webTotal Use [ 6826 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/a54fb237308f85b17c2c37e881940bef?family=Canicule+Display+v0.1+Trial+Light" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/a54fb237308f85b17c2c37e881940bef?family=Canicule+Display+v0.1+Trial+Light); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Canicule Display v0.1 Trial Light";
    src: url("https://db.onlinewebfonts.com/t/a54fb237308f85b17c2c37e881940bef.eot");
    src: url("https://db.onlinewebfonts.com/t/a54fb237308f85b17c2c37e881940bef.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/a54fb237308f85b17c2c37e881940bef.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/a54fb237308f85b17c2c37e881940bef.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/a54fb237308f85b17c2c37e881940bef.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/a54fb237308f85b17c2c37e881940bef.svg#Canicule Display v0.1 Trial Light")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Canicule Display v0.1 Trial Light";