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