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