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