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