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