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