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