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