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