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