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