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