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