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