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