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