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