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