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