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