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