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