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