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