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