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