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