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