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