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