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