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