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