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