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