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