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