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