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