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