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