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