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