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