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