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