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