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