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