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