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