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