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