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