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