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