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