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