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