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