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