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