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