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