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