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