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