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