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