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