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