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