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