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