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