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