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