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