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