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