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