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