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