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