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