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