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