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