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