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