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