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