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