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