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