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