Use on the webTotal Use [ 4200 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/a0f99310d1dbf4b82a8e7a63c710fedb?family=Canicule+Display+v0.1+Trial+ExLight" 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/a0f99310d1dbf4b82a8e7a63c710fedb?family=Canicule+Display+v0.1+Trial+ExLight); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Canicule Display v0.1 Trial ExLight";
    src: url("https://db.onlinewebfonts.com/t/a0f99310d1dbf4b82a8e7a63c710fedb.eot");
    src: url("https://db.onlinewebfonts.com/t/a0f99310d1dbf4b82a8e7a63c710fedb.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/a0f99310d1dbf4b82a8e7a63c710fedb.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/a0f99310d1dbf4b82a8e7a63c710fedb.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/a0f99310d1dbf4b82a8e7a63c710fedb.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/a0f99310d1dbf4b82a8e7a63c710fedb.svg#Canicule Display v0.1 Trial ExLight")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Canicule Display v0.1 Trial ExLight";