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