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