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