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