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