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