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