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