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