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