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