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