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