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