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