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