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