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