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