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