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