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