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