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