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