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