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