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