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