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