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