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