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