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