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