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