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