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