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