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