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