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