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