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