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