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